1221-002-gaofei

This commit is contained in:
gaofei
2021-12-21 16:10:02 +08:00
parent 6887e55225
commit 0bf6d1efd7
22 changed files with 1553 additions and 548 deletions
+120
View File
@@ -0,0 +1,120 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Model
{
public class CostControlDetailItem
{
public string Id { get; set; }
public string Name1 { get; set; }
public string Name2 { get; set; }
public string Name3 { get; set; }
public decimal? TotalNum { get; set; }
public decimal? PlanPrice { get; set; }
public decimal? RealPrice { get; set; }
public decimal? PlanNum1 { get; set; }
public decimal? ThisNum1 { get; set; }
public decimal? PlanNum2 { get; set; }
public decimal? ThisNum2 { get; set; }
public decimal? PlanNum3 { get; set; }
public decimal? ThisNum3 { get; set; }
public decimal? PlanNum4 { get; set; }
public decimal? ThisNum4 { get; set; }
public decimal? PlanNum5 { get; set; }
public decimal? ThisNum5 { get; set; }
public decimal? PlanNum6 { get; set; }
public decimal? ThisNum6 { get; set; }
public decimal? PlanNum7 { get; set; }
public decimal? ThisNum7 { get; set; }
public decimal? PlanNum8 { get; set; }
public decimal? ThisNum8 { get; set; }
public decimal? PlanNum9 { get; set; }
public decimal? ThisNum9 { get; set; }
public decimal? PlanNum10 { get; set; }
public decimal? ThisNum10 { get; set; }
public decimal? PlanNum11 { get; set; }
public decimal? ThisNum11 { get; set; }
public decimal? PlanNum12 { get; set; }
public decimal? ThisNum12 { get; set; }
public decimal? PlanNum13 { get; set; }
public decimal? ThisNum13 { get; set; }
public decimal? PlanNum14 { get; set; }
public decimal? ThisNum14 { get; set; }
public decimal? PlanNum15 { get; set; }
public decimal? ThisNum15 { get; set; }
public decimal? PlanNum16 { get; set; }
public decimal? ThisNum16 { get; set; }
public decimal? PlanNum17 { get; set; }
public decimal? ThisNum17 { get; set; }
public decimal? PlanNum18 { get; set; }
public decimal? ThisNum18 { get; set; }
public decimal? PlanNum19 { get; set; }
public decimal? ThisNum19 { get; set; }
public decimal? PlanNum20 { get; set; }
public decimal? ThisNum20 { get; set; }
public decimal? PlanNum21 { get; set; }
public decimal? ThisNum21 { get; set; }
public decimal? PlanNum22 { get; set; }
public decimal? ThisNum22 { get; set; }
public decimal? PlanNum23 { get; set; }
public decimal? ThisNum23 { get; set; }
public decimal? PlanNum24 { get; set; }
public decimal? ThisNum24 { get; set; }
}
}
+42
View File
@@ -342605,6 +342605,8 @@ namespace Model
private string _SupId;
private string _Code;
private string _Name;
private string _WBSType;
@@ -342653,6 +342655,22 @@ namespace Model
}
}
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_Code", DbType="NVarChar(50)")]
public string Code
{
get
{
return this._Code;
}
set
{
if ((this._Code != value))
{
this._Code = value;
}
}
}
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_Name", DbType="NVarChar(102)")]
public string Name
{
@@ -347204,6 +347222,8 @@ namespace Model
private System.Nullable<decimal> _PlanPrice;
private System.Nullable<bool> _IsSelected;
private EntityRef<Base_Project> _Base_Project;
private EntityRef<Wbs_WbsSet> _Wbs_WbsSet;
@@ -347234,6 +347254,8 @@ namespace Model
partial void OnRealPriceChanged();
partial void OnPlanPriceChanging(System.Nullable<decimal> value);
partial void OnPlanPriceChanged();
partial void OnIsSelectedChanging(System.Nullable<bool> value);
partial void OnIsSelectedChanged();
#endregion
public WBS_CostControl()
@@ -347433,6 +347455,26 @@ namespace Model
}
}
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_IsSelected", DbType="Bit")]
public System.Nullable<bool> IsSelected
{
get
{
return this._IsSelected;
}
set
{
if ((this._IsSelected != value))
{
this.OnIsSelectedChanging(value);
this.SendPropertyChanging();
this._IsSelected = value;
this.SendPropertyChanged("IsSelected");
this.OnIsSelectedChanged();
}
}
}
[global::System.Data.Linq.Mapping.AssociationAttribute(Name="FK_WBS_CostControl_Base_Project", Storage="_Base_Project", ThisKey="ProjectId", OtherKey="ProjectId", IsForeignKey=true)]
public Base_Project Base_Project
{
+1
View File
@@ -146,6 +146,7 @@
<Compile Include="Chart\DataSourceChart.cs" />
<Compile Include="Chart\DataSourcePoint.cs" />
<Compile Include="Chart\DataSourceTeam.cs" />
<Compile Include="CostControlDetailItem.cs" />
<Compile Include="CQMS\CheckItem.cs" />
<Compile Include="CQMS\CheckStatisc.cs" />
<Compile Include="CQMS\FileCabinetItem.cs" />