This commit is contained in:
2026-05-25 19:46:30 +08:00
parent ab0923818a
commit 48d6e95ff9
8 changed files with 54 additions and 6 deletions
+24
View File
@@ -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;