1
This commit is contained in:
@@ -275636,6 +275636,8 @@ namespace Model
|
||||
|
||||
private string _BatchNo;
|
||||
|
||||
private System.Nullable<System.DateTime> _DeliveryDate;
|
||||
|
||||
#region 可扩展性方法定义
|
||||
partial void OnLoaded();
|
||||
partial void OnValidate(System.Data.Linq.ChangeAction action);
|
||||
@@ -275658,6 +275660,8 @@ namespace Model
|
||||
partial void OnHeatNoChanged();
|
||||
partial void OnBatchNoChanging(string value);
|
||||
partial void OnBatchNoChanged();
|
||||
partial void OnDeliveryDateChanging(System.Nullable<System.DateTime> value);
|
||||
partial void OnDeliveryDateChanged();
|
||||
#endregion
|
||||
|
||||
public Tw_InOutPlanDetail()
|
||||
@@ -275845,6 +275849,26 @@ namespace Model
|
||||
}
|
||||
}
|
||||
|
||||
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_DeliveryDate", DbType="DateTime")]
|
||||
public System.Nullable<System.DateTime> DeliveryDate
|
||||
{
|
||||
get
|
||||
{
|
||||
return this._DeliveryDate;
|
||||
}
|
||||
set
|
||||
{
|
||||
if ((this._DeliveryDate != value))
|
||||
{
|
||||
this.OnDeliveryDateChanging(value);
|
||||
this.SendPropertyChanging();
|
||||
this._DeliveryDate = value;
|
||||
this.SendPropertyChanged("DeliveryDate");
|
||||
this.OnDeliveryDateChanged();
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
public event PropertyChangingEventHandler PropertyChanging;
|
||||
|
||||
public event PropertyChangedEventHandler PropertyChanged;
|
||||
|
||||
Reference in New Issue
Block a user