焊接材料管理修改
This commit is contained in:
@@ -91887,6 +91887,8 @@ namespace Model
|
||||
|
||||
private System.Nullable<System.DateTime> _ReceiveDate;
|
||||
|
||||
private string _TrainNumber;
|
||||
|
||||
#region 可扩展性方法定义
|
||||
partial void OnLoaded();
|
||||
partial void OnValidate(System.Data.Linq.ChangeAction action);
|
||||
@@ -91913,6 +91915,8 @@ namespace Model
|
||||
partial void OnReceiveManChanged();
|
||||
partial void OnReceiveDateChanging(System.Nullable<System.DateTime> value);
|
||||
partial void OnReceiveDateChanged();
|
||||
partial void OnTrainNumberChanging(string value);
|
||||
partial void OnTrainNumberChanged();
|
||||
#endregion
|
||||
|
||||
public HJGL_PackagingManage()
|
||||
@@ -92140,6 +92144,26 @@ namespace Model
|
||||
}
|
||||
}
|
||||
|
||||
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_TrainNumber", DbType="VarChar(50)")]
|
||||
public string TrainNumber
|
||||
{
|
||||
get
|
||||
{
|
||||
return this._TrainNumber;
|
||||
}
|
||||
set
|
||||
{
|
||||
if ((this._TrainNumber != value))
|
||||
{
|
||||
this.OnTrainNumberChanging(value);
|
||||
this.SendPropertyChanging();
|
||||
this._TrainNumber = value;
|
||||
this.SendPropertyChanged("TrainNumber");
|
||||
this.OnTrainNumberChanged();
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
public event PropertyChangingEventHandler PropertyChanging;
|
||||
|
||||
public event PropertyChangedEventHandler PropertyChanged;
|
||||
|
||||
Reference in New Issue
Block a user