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
+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
{