|
|
@ -1638,6 +1638,8 @@ namespace ICSSoft.Frame.Data.Entity |
|
|
|
|
|
|
|
private string _IsSerialNumber; |
|
|
|
|
|
|
|
private string _SAPSequence; |
|
|
|
|
|
|
|
#region 可扩展性方法定义
|
|
|
|
partial void OnLoaded(); |
|
|
|
partial void OnValidate(System.Data.Linq.ChangeAction action); |
|
|
@ -1726,6 +1728,8 @@ namespace ICSSoft.Frame.Data.Entity |
|
|
|
partial void OnStockIndicatorChanged(); |
|
|
|
partial void OnIsSerialNumberChanging(string value); |
|
|
|
partial void OnIsSerialNumberChanged(); |
|
|
|
partial void OnSAPSequenceChanging(string value); |
|
|
|
partial void OnSAPSequenceChanged(); |
|
|
|
#endregion
|
|
|
|
|
|
|
|
public ICSMOApply() |
|
|
@ -2573,6 +2577,26 @@ namespace ICSSoft.Frame.Data.Entity |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_SAPSequence", DbType="VarChar(50)")] |
|
|
|
public string SAPSequence |
|
|
|
{ |
|
|
|
get |
|
|
|
{ |
|
|
|
return this._SAPSequence; |
|
|
|
} |
|
|
|
set |
|
|
|
{ |
|
|
|
if ((this._SAPSequence != value)) |
|
|
|
{ |
|
|
|
this.OnSAPSequenceChanging(value); |
|
|
|
this.SendPropertyChanging(); |
|
|
|
this._SAPSequence = value; |
|
|
|
this.SendPropertyChanged("SAPSequence"); |
|
|
|
this.OnSAPSequenceChanged(); |
|
|
|
} |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
public event PropertyChangingEventHandler PropertyChanging; |
|
|
|
|
|
|
|
public event PropertyChangedEventHandler PropertyChanged; |
|
|
@ -2956,6 +2980,8 @@ namespace ICSSoft.Frame.Data.Entity |
|
|
|
|
|
|
|
private string _EATTRIBUTE; |
|
|
|
|
|
|
|
private string _SAPSequence; |
|
|
|
|
|
|
|
#region 可扩展性方法定义
|
|
|
|
partial void OnLoaded(); |
|
|
|
partial void OnValidate(System.Data.Linq.ChangeAction action); |
|
|
@ -2990,6 +3016,8 @@ namespace ICSSoft.Frame.Data.Entity |
|
|
|
partial void OnWorkPointChanged(); |
|
|
|
partial void OnEATTRIBUTEChanging(string value); |
|
|
|
partial void OnEATTRIBUTEChanged(); |
|
|
|
partial void OnSAPSequenceChanging(string value); |
|
|
|
partial void OnSAPSequenceChanged(); |
|
|
|
#endregion
|
|
|
|
|
|
|
|
public ICSMOApplyNegDetail() |
|
|
@ -3297,6 +3325,26 @@ namespace ICSSoft.Frame.Data.Entity |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_SAPSequence", DbType="VarChar(50)")] |
|
|
|
public string SAPSequence |
|
|
|
{ |
|
|
|
get |
|
|
|
{ |
|
|
|
return this._SAPSequence; |
|
|
|
} |
|
|
|
set |
|
|
|
{ |
|
|
|
if ((this._SAPSequence != value)) |
|
|
|
{ |
|
|
|
this.OnSAPSequenceChanging(value); |
|
|
|
this.SendPropertyChanging(); |
|
|
|
this._SAPSequence = value; |
|
|
|
this.SendPropertyChanged("SAPSequence"); |
|
|
|
this.OnSAPSequenceChanged(); |
|
|
|
} |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
public event PropertyChangingEventHandler PropertyChanging; |
|
|
|
|
|
|
|
public event PropertyChangedEventHandler PropertyChanged; |
|
|
@ -3400,6 +3448,8 @@ namespace ICSSoft.Frame.Data.Entity |
|
|
|
|
|
|
|
private string _IsSerialNumber; |
|
|
|
|
|
|
|
private string _SAPSequence; |
|
|
|
|
|
|
|
#region 可扩展性方法定义
|
|
|
|
partial void OnLoaded(); |
|
|
|
partial void OnValidate(System.Data.Linq.ChangeAction action); |
|
|
@ -3480,6 +3530,8 @@ namespace ICSSoft.Frame.Data.Entity |
|
|
|
partial void OnRemark2Changed(); |
|
|
|
partial void OnIsSerialNumberChanging(string value); |
|
|
|
partial void OnIsSerialNumberChanged(); |
|
|
|
partial void OnSAPSequenceChanging(string value); |
|
|
|
partial void OnSAPSequenceChanged(); |
|
|
|
#endregion
|
|
|
|
|
|
|
|
public ICSTransfer() |
|
|
@ -4247,6 +4299,26 @@ namespace ICSSoft.Frame.Data.Entity |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_SAPSequence", DbType="VarChar(50)")] |
|
|
|
public string SAPSequence |
|
|
|
{ |
|
|
|
get |
|
|
|
{ |
|
|
|
return this._SAPSequence; |
|
|
|
} |
|
|
|
set |
|
|
|
{ |
|
|
|
if ((this._SAPSequence != value)) |
|
|
|
{ |
|
|
|
this.OnSAPSequenceChanging(value); |
|
|
|
this.SendPropertyChanging(); |
|
|
|
this._SAPSequence = value; |
|
|
|
this.SendPropertyChanged("SAPSequence"); |
|
|
|
this.OnSAPSequenceChanged(); |
|
|
|
} |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
public event PropertyChangingEventHandler PropertyChanging; |
|
|
|
|
|
|
|
public event PropertyChangedEventHandler PropertyChanged; |
|
|
@ -4322,6 +4394,8 @@ namespace ICSSoft.Frame.Data.Entity |
|
|
|
|
|
|
|
private string _EATTRIBUTE1; |
|
|
|
|
|
|
|
private string _SAPSequence; |
|
|
|
|
|
|
|
#region 可扩展性方法定义
|
|
|
|
partial void OnLoaded(); |
|
|
|
partial void OnValidate(System.Data.Linq.ChangeAction action); |
|
|
@ -4374,6 +4448,8 @@ namespace ICSSoft.Frame.Data.Entity |
|
|
|
partial void OnWorkPointChanged(); |
|
|
|
partial void OnEATTRIBUTE1Changing(string value); |
|
|
|
partial void OnEATTRIBUTE1Changed(); |
|
|
|
partial void OnSAPSequenceChanging(string value); |
|
|
|
partial void OnSAPSequenceChanged(); |
|
|
|
#endregion
|
|
|
|
|
|
|
|
public ICSMTDOC() |
|
|
@ -4861,6 +4937,26 @@ namespace ICSSoft.Frame.Data.Entity |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_SAPSequence", DbType="VarChar(50)")] |
|
|
|
public string SAPSequence |
|
|
|
{ |
|
|
|
get |
|
|
|
{ |
|
|
|
return this._SAPSequence; |
|
|
|
} |
|
|
|
set |
|
|
|
{ |
|
|
|
if ((this._SAPSequence != value)) |
|
|
|
{ |
|
|
|
this.OnSAPSequenceChanging(value); |
|
|
|
this.SendPropertyChanging(); |
|
|
|
this._SAPSequence = value; |
|
|
|
this.SendPropertyChanged("SAPSequence"); |
|
|
|
this.OnSAPSequenceChanged(); |
|
|
|
} |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
public event PropertyChangingEventHandler PropertyChanging; |
|
|
|
|
|
|
|
public event PropertyChangedEventHandler PropertyChanged; |
|
|
@ -4952,6 +5048,8 @@ namespace ICSSoft.Frame.Data.Entity |
|
|
|
|
|
|
|
private string _IsSerialNumber; |
|
|
|
|
|
|
|
private string _SAPSequence; |
|
|
|
|
|
|
|
#region 可扩展性方法定义
|
|
|
|
partial void OnLoaded(); |
|
|
|
partial void OnValidate(System.Data.Linq.ChangeAction action); |
|
|
@ -5020,6 +5118,8 @@ namespace ICSSoft.Frame.Data.Entity |
|
|
|
partial void OnRemarksTermChanged(); |
|
|
|
partial void OnIsSerialNumberChanging(string value); |
|
|
|
partial void OnIsSerialNumberChanged(); |
|
|
|
partial void OnSAPSequenceChanging(string value); |
|
|
|
partial void OnSAPSequenceChanged(); |
|
|
|
#endregion
|
|
|
|
|
|
|
|
public ICSManufactureReceive() |
|
|
@ -5667,6 +5767,26 @@ namespace ICSSoft.Frame.Data.Entity |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_SAPSequence", DbType="VarChar(50)")] |
|
|
|
public string SAPSequence |
|
|
|
{ |
|
|
|
get |
|
|
|
{ |
|
|
|
return this._SAPSequence; |
|
|
|
} |
|
|
|
set |
|
|
|
{ |
|
|
|
if ((this._SAPSequence != value)) |
|
|
|
{ |
|
|
|
this.OnSAPSequenceChanging(value); |
|
|
|
this.SendPropertyChanging(); |
|
|
|
this._SAPSequence = value; |
|
|
|
this.SendPropertyChanged("SAPSequence"); |
|
|
|
this.OnSAPSequenceChanged(); |
|
|
|
} |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
public event PropertyChangingEventHandler PropertyChanging; |
|
|
|
|
|
|
|
public event PropertyChangedEventHandler PropertyChanged; |
|
|
@ -9068,6 +9188,8 @@ namespace ICSSoft.Frame.Data.Entity |
|
|
|
|
|
|
|
private string _IsSerialNumber; |
|
|
|
|
|
|
|
private string _SAPSequence; |
|
|
|
|
|
|
|
#region 可扩展性方法定义
|
|
|
|
partial void OnLoaded(); |
|
|
|
partial void OnValidate(System.Data.Linq.ChangeAction action); |
|
|
@ -9132,6 +9254,8 @@ namespace ICSSoft.Frame.Data.Entity |
|
|
|
partial void OnStockIndicatorChanged(); |
|
|
|
partial void OnIsSerialNumberChanging(string value); |
|
|
|
partial void OnIsSerialNumberChanged(); |
|
|
|
partial void OnSAPSequenceChanging(string value); |
|
|
|
partial void OnSAPSequenceChanged(); |
|
|
|
#endregion
|
|
|
|
|
|
|
|
public ICSOtherOut() |
|
|
@ -9739,6 +9863,26 @@ namespace ICSSoft.Frame.Data.Entity |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_SAPSequence", DbType="VarChar(50)")] |
|
|
|
public string SAPSequence |
|
|
|
{ |
|
|
|
get |
|
|
|
{ |
|
|
|
return this._SAPSequence; |
|
|
|
} |
|
|
|
set |
|
|
|
{ |
|
|
|
if ((this._SAPSequence != value)) |
|
|
|
{ |
|
|
|
this.OnSAPSequenceChanging(value); |
|
|
|
this.SendPropertyChanging(); |
|
|
|
this._SAPSequence = value; |
|
|
|
this.SendPropertyChanged("SAPSequence"); |
|
|
|
this.OnSAPSequenceChanged(); |
|
|
|
} |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
public event PropertyChangingEventHandler PropertyChanging; |
|
|
|
|
|
|
|
public event PropertyChangedEventHandler PropertyChanged; |
|
|
@ -9826,6 +9970,8 @@ namespace ICSSoft.Frame.Data.Entity |
|
|
|
|
|
|
|
private string _IsSerialNumber; |
|
|
|
|
|
|
|
private string _SAPSequence; |
|
|
|
|
|
|
|
#region 可扩展性方法定义
|
|
|
|
partial void OnLoaded(); |
|
|
|
partial void OnValidate(System.Data.Linq.ChangeAction action); |
|
|
@ -9890,6 +10036,8 @@ namespace ICSSoft.Frame.Data.Entity |
|
|
|
partial void OnStockIndicatorChanged(); |
|
|
|
partial void OnIsSerialNumberChanging(string value); |
|
|
|
partial void OnIsSerialNumberChanged(); |
|
|
|
partial void OnSAPSequenceChanging(string value); |
|
|
|
partial void OnSAPSequenceChanged(); |
|
|
|
#endregion
|
|
|
|
|
|
|
|
public ICSOtherIn() |
|
|
@ -10497,6 +10645,26 @@ namespace ICSSoft.Frame.Data.Entity |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_SAPSequence", DbType="VarChar(50)")] |
|
|
|
public string SAPSequence |
|
|
|
{ |
|
|
|
get |
|
|
|
{ |
|
|
|
return this._SAPSequence; |
|
|
|
} |
|
|
|
set |
|
|
|
{ |
|
|
|
if ((this._SAPSequence != value)) |
|
|
|
{ |
|
|
|
this.OnSAPSequenceChanging(value); |
|
|
|
this.SendPropertyChanging(); |
|
|
|
this._SAPSequence = value; |
|
|
|
this.SendPropertyChanged("SAPSequence"); |
|
|
|
this.OnSAPSequenceChanged(); |
|
|
|
} |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
public event PropertyChangingEventHandler PropertyChanging; |
|
|
|
|
|
|
|
public event PropertyChangedEventHandler PropertyChanged; |
|
|
|