20250116 key Quantity、项目状态修改
This commit is contained in:
@@ -11584,6 +11584,14 @@ namespace Model
|
||||
|
||||
private System.Nullable<decimal> _PlanMHRs;
|
||||
|
||||
private string _Identifier;
|
||||
|
||||
private string _Descipline;
|
||||
|
||||
private string _QuantityDesctiption;
|
||||
|
||||
private System.Nullable<decimal> _PlanMHRsUnit;
|
||||
|
||||
private EntityRef<Base_QuantityDesctiption> _Base_QuantityDesctiption;
|
||||
|
||||
private EntityRef<Editor_EProject> _Editor_EProject;
|
||||
@@ -11602,6 +11610,14 @@ namespace Model
|
||||
partial void OnInputQuantityChanged();
|
||||
partial void OnPlanMHRsChanging(System.Nullable<decimal> value);
|
||||
partial void OnPlanMHRsChanged();
|
||||
partial void OnIdentifierChanging(string value);
|
||||
partial void OnIdentifierChanged();
|
||||
partial void OnDesciplineChanging(string value);
|
||||
partial void OnDesciplineChanged();
|
||||
partial void OnQuantityDesctiptionChanging(string value);
|
||||
partial void OnQuantityDesctiptionChanged();
|
||||
partial void OnPlanMHRsUnitChanging(System.Nullable<decimal> value);
|
||||
partial void OnPlanMHRsUnitChanged();
|
||||
#endregion
|
||||
|
||||
public Editor_KeyQuantity()
|
||||
@@ -11719,6 +11735,86 @@ namespace Model
|
||||
}
|
||||
}
|
||||
|
||||
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_Identifier", DbType="NVarChar(50)")]
|
||||
public string Identifier
|
||||
{
|
||||
get
|
||||
{
|
||||
return this._Identifier;
|
||||
}
|
||||
set
|
||||
{
|
||||
if ((this._Identifier != value))
|
||||
{
|
||||
this.OnIdentifierChanging(value);
|
||||
this.SendPropertyChanging();
|
||||
this._Identifier = value;
|
||||
this.SendPropertyChanged("Identifier");
|
||||
this.OnIdentifierChanged();
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_Descipline", DbType="NVarChar(50)")]
|
||||
public string Descipline
|
||||
{
|
||||
get
|
||||
{
|
||||
return this._Descipline;
|
||||
}
|
||||
set
|
||||
{
|
||||
if ((this._Descipline != value))
|
||||
{
|
||||
this.OnDesciplineChanging(value);
|
||||
this.SendPropertyChanging();
|
||||
this._Descipline = value;
|
||||
this.SendPropertyChanged("Descipline");
|
||||
this.OnDesciplineChanged();
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_QuantityDesctiption", DbType="NVarChar(200)")]
|
||||
public string QuantityDesctiption
|
||||
{
|
||||
get
|
||||
{
|
||||
return this._QuantityDesctiption;
|
||||
}
|
||||
set
|
||||
{
|
||||
if ((this._QuantityDesctiption != value))
|
||||
{
|
||||
this.OnQuantityDesctiptionChanging(value);
|
||||
this.SendPropertyChanging();
|
||||
this._QuantityDesctiption = value;
|
||||
this.SendPropertyChanged("QuantityDesctiption");
|
||||
this.OnQuantityDesctiptionChanged();
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_PlanMHRsUnit", DbType="Decimal(18,2)")]
|
||||
public System.Nullable<decimal> PlanMHRsUnit
|
||||
{
|
||||
get
|
||||
{
|
||||
return this._PlanMHRsUnit;
|
||||
}
|
||||
set
|
||||
{
|
||||
if ((this._PlanMHRsUnit != value))
|
||||
{
|
||||
this.OnPlanMHRsUnitChanging(value);
|
||||
this.SendPropertyChanging();
|
||||
this._PlanMHRsUnit = value;
|
||||
this.SendPropertyChanged("PlanMHRsUnit");
|
||||
this.OnPlanMHRsUnitChanged();
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
[global::System.Data.Linq.Mapping.AssociationAttribute(Name="FK_Editor_KeyQuantity_Base_QuantityDesctiption", Storage="_Base_QuantityDesctiption", ThisKey="KeyId", OtherKey="KeyId", IsForeignKey=true)]
|
||||
public Base_QuantityDesctiption Base_QuantityDesctiption
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user