提交代码

This commit is contained in:
2023-11-28 10:59:50 +08:00
parent de0a1d28d3
commit db46ed8cd1
18 changed files with 402 additions and 191 deletions
+42
View File
@@ -293155,6 +293155,8 @@ namespace Model
private string _ShowId;
private System.Nullable<decimal> _DrawProjectQuantity;
private string _ProjectId;
public View_WBS()
@@ -293449,6 +293451,22 @@ namespace Model
}
}
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_DrawProjectQuantity", DbType="Decimal(18,2)")]
public System.Nullable<decimal> DrawProjectQuantity
{
get
{
return this._DrawProjectQuantity;
}
set
{
if ((this._DrawProjectQuantity != value))
{
this._DrawProjectQuantity = value;
}
}
}
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_ProjectId", DbType="NVarChar(50)")]
public string ProjectId
{
@@ -299078,6 +299096,8 @@ namespace Model
private string _WBSCode;
private System.Nullable<decimal> _DrawProjectQuantity;
private EntitySet<WBS_ControlItemAndCycle> _WBS_ControlItemAndCycle;
private EntityRef<WBS_UnitWork> _WBS_UnitWork;
@@ -299150,6 +299170,8 @@ namespace Model
partial void OnPreWorkCodeChanged();
partial void OnWBSCodeChanging(string value);
partial void OnWBSCodeChanged();
partial void OnDrawProjectQuantityChanging(System.Nullable<decimal> value);
partial void OnDrawProjectQuantityChanged();
#endregion
public WBS_WorkPackage()
@@ -299784,6 +299806,26 @@ namespace Model
}
}
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_DrawProjectQuantity", DbType="Decimal(18,2)")]
public System.Nullable<decimal> DrawProjectQuantity
{
get
{
return this._DrawProjectQuantity;
}
set
{
if ((this._DrawProjectQuantity != value))
{
this.OnDrawProjectQuantityChanging(value);
this.SendPropertyChanging();
this._DrawProjectQuantity = value;
this.SendPropertyChanged("DrawProjectQuantity");
this.OnDrawProjectQuantityChanged();
}
}
}
[global::System.Data.Linq.Mapping.AssociationAttribute(Name="FK_WBS_ControlItemAndCycle_WBS_ControlItemAndCycle", Storage="_WBS_ControlItemAndCycle", ThisKey="WorkPackageId", OtherKey="WorkPackageId", DeleteRule="NO ACTION")]
public EntitySet<WBS_ControlItemAndCycle> WBS_ControlItemAndCycle
{