Merge branch 'master' of https://gitee.com/frane-yang/SGGL_SeDin_New
This commit is contained in:
@@ -259562,6 +259562,10 @@ namespace Model
|
||||
|
||||
private System.Nullable<System.DateTime> _AuditDate2;
|
||||
|
||||
private string _WarehouseMan;
|
||||
|
||||
private System.Nullable<System.DateTime> _WarehouseDate;
|
||||
|
||||
#region 可扩展性方法定义
|
||||
partial void OnLoaded();
|
||||
partial void OnValidate(System.Data.Linq.ChangeAction action);
|
||||
@@ -259604,6 +259608,10 @@ namespace Model
|
||||
partial void OnAuditMan2Changed();
|
||||
partial void OnAuditDate2Changing(System.Nullable<System.DateTime> value);
|
||||
partial void OnAuditDate2Changed();
|
||||
partial void OnWarehouseManChanging(string value);
|
||||
partial void OnWarehouseManChanged();
|
||||
partial void OnWarehouseDateChanging(System.Nullable<System.DateTime> value);
|
||||
partial void OnWarehouseDateChanged();
|
||||
#endregion
|
||||
|
||||
public Tw_InOutPlanMaster()
|
||||
@@ -259991,6 +259999,46 @@ namespace Model
|
||||
}
|
||||
}
|
||||
|
||||
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_WarehouseMan", DbType="NVarChar(50)")]
|
||||
public string WarehouseMan
|
||||
{
|
||||
get
|
||||
{
|
||||
return this._WarehouseMan;
|
||||
}
|
||||
set
|
||||
{
|
||||
if ((this._WarehouseMan != value))
|
||||
{
|
||||
this.OnWarehouseManChanging(value);
|
||||
this.SendPropertyChanging();
|
||||
this._WarehouseMan = value;
|
||||
this.SendPropertyChanged("WarehouseMan");
|
||||
this.OnWarehouseManChanged();
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_WarehouseDate", DbType="DateTime")]
|
||||
public System.Nullable<System.DateTime> WarehouseDate
|
||||
{
|
||||
get
|
||||
{
|
||||
return this._WarehouseDate;
|
||||
}
|
||||
set
|
||||
{
|
||||
if ((this._WarehouseDate != value))
|
||||
{
|
||||
this.OnWarehouseDateChanging(value);
|
||||
this.SendPropertyChanging();
|
||||
this._WarehouseDate = value;
|
||||
this.SendPropertyChanged("WarehouseDate");
|
||||
this.OnWarehouseDateChanged();
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
public event PropertyChangingEventHandler PropertyChanging;
|
||||
|
||||
public event PropertyChangedEventHandler PropertyChanged;
|
||||
@@ -260230,6 +260278,10 @@ namespace Model
|
||||
|
||||
private string _Remark;
|
||||
|
||||
private string _WarehouseMan;
|
||||
|
||||
private System.Nullable<System.DateTime> _WarehouseDate;
|
||||
|
||||
#region 可扩展性方法定义
|
||||
partial void OnLoaded();
|
||||
partial void OnValidate(System.Data.Linq.ChangeAction action);
|
||||
@@ -260264,6 +260316,10 @@ namespace Model
|
||||
partial void OnAuditDateChanged();
|
||||
partial void OnRemarkChanging(string value);
|
||||
partial void OnRemarkChanged();
|
||||
partial void OnWarehouseManChanging(string value);
|
||||
partial void OnWarehouseManChanged();
|
||||
partial void OnWarehouseDateChanging(System.Nullable<System.DateTime> value);
|
||||
partial void OnWarehouseDateChanged();
|
||||
#endregion
|
||||
|
||||
public Tw_InputMaster()
|
||||
@@ -260571,6 +260627,46 @@ namespace Model
|
||||
}
|
||||
}
|
||||
|
||||
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_WarehouseMan", DbType="NVarChar(50)")]
|
||||
public string WarehouseMan
|
||||
{
|
||||
get
|
||||
{
|
||||
return this._WarehouseMan;
|
||||
}
|
||||
set
|
||||
{
|
||||
if ((this._WarehouseMan != value))
|
||||
{
|
||||
this.OnWarehouseManChanging(value);
|
||||
this.SendPropertyChanging();
|
||||
this._WarehouseMan = value;
|
||||
this.SendPropertyChanged("WarehouseMan");
|
||||
this.OnWarehouseManChanged();
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_WarehouseDate", DbType="DateTime")]
|
||||
public System.Nullable<System.DateTime> WarehouseDate
|
||||
{
|
||||
get
|
||||
{
|
||||
return this._WarehouseDate;
|
||||
}
|
||||
set
|
||||
{
|
||||
if ((this._WarehouseDate != value))
|
||||
{
|
||||
this.OnWarehouseDateChanging(value);
|
||||
this.SendPropertyChanging();
|
||||
this._WarehouseDate = value;
|
||||
this.SendPropertyChanged("WarehouseDate");
|
||||
this.OnWarehouseDateChanged();
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
public event PropertyChangingEventHandler PropertyChanging;
|
||||
|
||||
public event PropertyChangedEventHandler PropertyChanged;
|
||||
@@ -260966,6 +261062,10 @@ namespace Model
|
||||
|
||||
private System.Nullable<System.DateTime> _AuditDate;
|
||||
|
||||
private string _WarehouseMan;
|
||||
|
||||
private System.Nullable<System.DateTime> _WarehouseDate;
|
||||
|
||||
#region 可扩展性方法定义
|
||||
partial void OnLoaded();
|
||||
partial void OnValidate(System.Data.Linq.ChangeAction action);
|
||||
@@ -260998,6 +261098,10 @@ namespace Model
|
||||
partial void OnAuditManChanged();
|
||||
partial void OnAuditDateChanging(System.Nullable<System.DateTime> value);
|
||||
partial void OnAuditDateChanged();
|
||||
partial void OnWarehouseManChanging(string value);
|
||||
partial void OnWarehouseManChanged();
|
||||
partial void OnWarehouseDateChanging(System.Nullable<System.DateTime> value);
|
||||
partial void OnWarehouseDateChanged();
|
||||
#endregion
|
||||
|
||||
public Tw_OutputMaster()
|
||||
@@ -261285,6 +261389,46 @@ namespace Model
|
||||
}
|
||||
}
|
||||
|
||||
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_WarehouseMan", DbType="NVarChar(50)")]
|
||||
public string WarehouseMan
|
||||
{
|
||||
get
|
||||
{
|
||||
return this._WarehouseMan;
|
||||
}
|
||||
set
|
||||
{
|
||||
if ((this._WarehouseMan != value))
|
||||
{
|
||||
this.OnWarehouseManChanging(value);
|
||||
this.SendPropertyChanging();
|
||||
this._WarehouseMan = value;
|
||||
this.SendPropertyChanged("WarehouseMan");
|
||||
this.OnWarehouseManChanged();
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_WarehouseDate", DbType="DateTime")]
|
||||
public System.Nullable<System.DateTime> WarehouseDate
|
||||
{
|
||||
get
|
||||
{
|
||||
return this._WarehouseDate;
|
||||
}
|
||||
set
|
||||
{
|
||||
if ((this._WarehouseDate != value))
|
||||
{
|
||||
this.OnWarehouseDateChanging(value);
|
||||
this.SendPropertyChanging();
|
||||
this._WarehouseDate = value;
|
||||
this.SendPropertyChanged("WarehouseDate");
|
||||
this.OnWarehouseDateChanged();
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
public event PropertyChangingEventHandler PropertyChanging;
|
||||
|
||||
public event PropertyChangedEventHandler PropertyChanged;
|
||||
|
||||
Reference in New Issue
Block a user