1
This commit is contained in:
@@ -100586,6 +100586,8 @@ namespace Model
|
||||
|
||||
private string _HeatNo;
|
||||
|
||||
private string _BatchNo;
|
||||
|
||||
private EntityRef<Base_Project> _Base_Project;
|
||||
|
||||
private EntitySet<HJGL_PipeLineMat> _HJGL_PipeLineMat;
|
||||
@@ -100612,6 +100614,8 @@ namespace Model
|
||||
partial void OnMaterialUnitChanged();
|
||||
partial void OnHeatNoChanging(string value);
|
||||
partial void OnHeatNoChanged();
|
||||
partial void OnBatchNoChanging(string value);
|
||||
partial void OnBatchNoChanged();
|
||||
#endregion
|
||||
|
||||
public HJGL_MaterialCodeLib()
|
||||
@@ -100805,6 +100809,26 @@ namespace Model
|
||||
}
|
||||
}
|
||||
|
||||
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_BatchNo", DbType="NVarChar(50)")]
|
||||
public string BatchNo
|
||||
{
|
||||
get
|
||||
{
|
||||
return this._BatchNo;
|
||||
}
|
||||
set
|
||||
{
|
||||
if ((this._BatchNo != value))
|
||||
{
|
||||
this.OnBatchNoChanging(value);
|
||||
this.SendPropertyChanging();
|
||||
this._BatchNo = value;
|
||||
this.SendPropertyChanged("BatchNo");
|
||||
this.OnBatchNoChanged();
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
[global::System.Data.Linq.Mapping.AssociationAttribute(Name="FK_HJGL_MaterialCodeLib_Base_Project", Storage="_Base_Project", ThisKey="ProjectId", OtherKey="ProjectId", IsForeignKey=true)]
|
||||
public Base_Project Base_Project
|
||||
{
|
||||
@@ -275610,6 +275634,8 @@ namespace Model
|
||||
|
||||
private string _HeatNo;
|
||||
|
||||
private string _BatchNo;
|
||||
|
||||
#region 可扩展性方法定义
|
||||
partial void OnLoaded();
|
||||
partial void OnValidate(System.Data.Linq.ChangeAction action);
|
||||
@@ -275630,6 +275656,8 @@ namespace Model
|
||||
partial void OnSortIndexChanged();
|
||||
partial void OnHeatNoChanging(string value);
|
||||
partial void OnHeatNoChanged();
|
||||
partial void OnBatchNoChanging(string value);
|
||||
partial void OnBatchNoChanged();
|
||||
#endregion
|
||||
|
||||
public Tw_InOutPlanDetail()
|
||||
@@ -275797,6 +275825,26 @@ namespace Model
|
||||
}
|
||||
}
|
||||
|
||||
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_BatchNo", DbType="NVarChar(50)")]
|
||||
public string BatchNo
|
||||
{
|
||||
get
|
||||
{
|
||||
return this._BatchNo;
|
||||
}
|
||||
set
|
||||
{
|
||||
if ((this._BatchNo != value))
|
||||
{
|
||||
this.OnBatchNoChanging(value);
|
||||
this.SendPropertyChanging();
|
||||
this._BatchNo = value;
|
||||
this.SendPropertyChanged("BatchNo");
|
||||
this.OnBatchNoChanged();
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
public event PropertyChangingEventHandler PropertyChanging;
|
||||
|
||||
public event PropertyChangedEventHandler PropertyChanged;
|
||||
|
||||
Reference in New Issue
Block a user