修改进度模块
This commit is contained in:
+145
-1
@@ -287846,7 +287846,7 @@ namespace Model
|
||||
}
|
||||
}
|
||||
|
||||
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_Name", DbType="NVarChar(50)")]
|
||||
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_Name", DbType="NVarChar(81)")]
|
||||
public string Name
|
||||
{
|
||||
get
|
||||
@@ -289894,6 +289894,8 @@ namespace Model
|
||||
|
||||
private string _CheckAcceptType;
|
||||
|
||||
private System.Nullable<System.DateTime> _RealEndDate;
|
||||
|
||||
private EntityRef<WBS_WorkPackage> _WBS_WorkPackage;
|
||||
|
||||
#region 可扩展性方法定义
|
||||
@@ -289940,6 +289942,8 @@ namespace Model
|
||||
partial void OnCostsChanged();
|
||||
partial void OnCheckAcceptTypeChanging(string value);
|
||||
partial void OnCheckAcceptTypeChanged();
|
||||
partial void OnRealEndDateChanging(System.Nullable<System.DateTime> value);
|
||||
partial void OnRealEndDateChanged();
|
||||
#endregion
|
||||
|
||||
public WBS_ControlItemAndCycle()
|
||||
@@ -290352,6 +290356,26 @@ namespace Model
|
||||
}
|
||||
}
|
||||
|
||||
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_RealEndDate", DbType="DateTime")]
|
||||
public System.Nullable<System.DateTime> RealEndDate
|
||||
{
|
||||
get
|
||||
{
|
||||
return this._RealEndDate;
|
||||
}
|
||||
set
|
||||
{
|
||||
if ((this._RealEndDate != value))
|
||||
{
|
||||
this.OnRealEndDateChanging(value);
|
||||
this.SendPropertyChanging();
|
||||
this._RealEndDate = value;
|
||||
this.SendPropertyChanged("RealEndDate");
|
||||
this.OnRealEndDateChanged();
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
[global::System.Data.Linq.Mapping.AssociationAttribute(Name="FK_WBS_ControlItemAndCycle_WBS_ControlItemAndCycle", Storage="_WBS_WorkPackage", ThisKey="WorkPackageId", OtherKey="WorkPackageId", IsForeignKey=true)]
|
||||
public WBS_WorkPackage WBS_WorkPackage
|
||||
{
|
||||
@@ -291511,6 +291535,10 @@ namespace Model
|
||||
|
||||
private System.Nullable<System.DateTime> _RealEndDate;
|
||||
|
||||
private System.Nullable<decimal> _PlanCost;
|
||||
|
||||
private System.Nullable<decimal> _JDWeights;
|
||||
|
||||
private EntitySet<Accident_AccidentPersonRecord> _Accident_AccidentPersonRecord;
|
||||
|
||||
private EntitySet<Accident_AccidentReport> _Accident_AccidentReport;
|
||||
@@ -291597,6 +291625,10 @@ namespace Model
|
||||
partial void OnRealStartDateChanged();
|
||||
partial void OnRealEndDateChanging(System.Nullable<System.DateTime> value);
|
||||
partial void OnRealEndDateChanged();
|
||||
partial void OnPlanCostChanging(System.Nullable<decimal> value);
|
||||
partial void OnPlanCostChanged();
|
||||
partial void OnJDWeightsChanging(System.Nullable<decimal> value);
|
||||
partial void OnJDWeightsChanged();
|
||||
#endregion
|
||||
|
||||
public WBS_UnitWork()
|
||||
@@ -291980,6 +292012,46 @@ namespace Model
|
||||
}
|
||||
}
|
||||
|
||||
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_PlanCost", DbType="Decimal(18,2)")]
|
||||
public System.Nullable<decimal> PlanCost
|
||||
{
|
||||
get
|
||||
{
|
||||
return this._PlanCost;
|
||||
}
|
||||
set
|
||||
{
|
||||
if ((this._PlanCost != value))
|
||||
{
|
||||
this.OnPlanCostChanging(value);
|
||||
this.SendPropertyChanging();
|
||||
this._PlanCost = value;
|
||||
this.SendPropertyChanged("PlanCost");
|
||||
this.OnPlanCostChanged();
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_JDWeights", DbType="Decimal(9,2)")]
|
||||
public System.Nullable<decimal> JDWeights
|
||||
{
|
||||
get
|
||||
{
|
||||
return this._JDWeights;
|
||||
}
|
||||
set
|
||||
{
|
||||
if ((this._JDWeights != value))
|
||||
{
|
||||
this.OnJDWeightsChanging(value);
|
||||
this.SendPropertyChanging();
|
||||
this._JDWeights = value;
|
||||
this.SendPropertyChanged("JDWeights");
|
||||
this.OnJDWeightsChanged();
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
[global::System.Data.Linq.Mapping.AssociationAttribute(Name="FK_Accident_AccidentPersonRecord_ProjectData_WorkArea", Storage="_Accident_AccidentPersonRecord", ThisKey="UnitWorkId", OtherKey="WorkAreaId", DeleteRule="NO ACTION")]
|
||||
public EntitySet<Accident_AccidentPersonRecord> Accident_AccidentPersonRecord
|
||||
{
|
||||
@@ -292688,6 +292760,12 @@ namespace Model
|
||||
|
||||
private System.Nullable<bool> _IsMileStone;
|
||||
|
||||
private System.Nullable<decimal> _PlanCost;
|
||||
|
||||
private System.Nullable<decimal> _JDWeights;
|
||||
|
||||
private string _PreWorkCode;
|
||||
|
||||
private EntitySet<WBS_ControlItemAndCycle> _WBS_ControlItemAndCycle;
|
||||
|
||||
private EntityRef<WBS_UnitWork> _WBS_UnitWork;
|
||||
@@ -292750,6 +292828,12 @@ namespace Model
|
||||
partial void OnUnitChanged();
|
||||
partial void OnIsMileStoneChanging(System.Nullable<bool> value);
|
||||
partial void OnIsMileStoneChanged();
|
||||
partial void OnPlanCostChanging(System.Nullable<decimal> value);
|
||||
partial void OnPlanCostChanged();
|
||||
partial void OnJDWeightsChanging(System.Nullable<decimal> value);
|
||||
partial void OnJDWeightsChanged();
|
||||
partial void OnPreWorkCodeChanging(string value);
|
||||
partial void OnPreWorkCodeChanged();
|
||||
#endregion
|
||||
|
||||
public WBS_WorkPackage()
|
||||
@@ -293303,6 +293387,66 @@ namespace Model
|
||||
}
|
||||
}
|
||||
|
||||
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_PlanCost", DbType="Decimal(18,2)")]
|
||||
public System.Nullable<decimal> PlanCost
|
||||
{
|
||||
get
|
||||
{
|
||||
return this._PlanCost;
|
||||
}
|
||||
set
|
||||
{
|
||||
if ((this._PlanCost != value))
|
||||
{
|
||||
this.OnPlanCostChanging(value);
|
||||
this.SendPropertyChanging();
|
||||
this._PlanCost = value;
|
||||
this.SendPropertyChanged("PlanCost");
|
||||
this.OnPlanCostChanged();
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_JDWeights", DbType="Decimal(9,2)")]
|
||||
public System.Nullable<decimal> JDWeights
|
||||
{
|
||||
get
|
||||
{
|
||||
return this._JDWeights;
|
||||
}
|
||||
set
|
||||
{
|
||||
if ((this._JDWeights != value))
|
||||
{
|
||||
this.OnJDWeightsChanging(value);
|
||||
this.SendPropertyChanging();
|
||||
this._JDWeights = value;
|
||||
this.SendPropertyChanged("JDWeights");
|
||||
this.OnJDWeightsChanged();
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_PreWorkCode", DbType="NVarChar(50)")]
|
||||
public string PreWorkCode
|
||||
{
|
||||
get
|
||||
{
|
||||
return this._PreWorkCode;
|
||||
}
|
||||
set
|
||||
{
|
||||
if ((this._PreWorkCode != value))
|
||||
{
|
||||
this.OnPreWorkCodeChanging(value);
|
||||
this.SendPropertyChanging();
|
||||
this._PreWorkCode = value;
|
||||
this.SendPropertyChanged("PreWorkCode");
|
||||
this.OnPreWorkCodeChanged();
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
[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
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user