|
@ -4552,6 +4552,10 @@ namespace ICSSoft.Frame.Data.Entity |
|
|
|
|
|
|
|
|
private string _SAPSequence; |
|
|
private string _SAPSequence; |
|
|
|
|
|
|
|
|
|
|
|
private string _Desks; |
|
|
|
|
|
|
|
|
|
|
|
private string _DispatcherName; |
|
|
|
|
|
|
|
|
#region 可扩展性方法定义
|
|
|
#region 可扩展性方法定义
|
|
|
partial void OnLoaded(); |
|
|
partial void OnLoaded(); |
|
|
partial void OnValidate(System.Data.Linq.ChangeAction action); |
|
|
partial void OnValidate(System.Data.Linq.ChangeAction action); |
|
@ -4622,6 +4626,10 @@ namespace ICSSoft.Frame.Data.Entity |
|
|
partial void OnIsSerialNumberChanged(); |
|
|
partial void OnIsSerialNumberChanged(); |
|
|
partial void OnSAPSequenceChanging(string value); |
|
|
partial void OnSAPSequenceChanging(string value); |
|
|
partial void OnSAPSequenceChanged(); |
|
|
partial void OnSAPSequenceChanged(); |
|
|
|
|
|
partial void OnDesksChanging(string value); |
|
|
|
|
|
partial void OnDesksChanged(); |
|
|
|
|
|
partial void OnDispatcherNameChanging(string value); |
|
|
|
|
|
partial void OnDispatcherNameChanged(); |
|
|
#endregion
|
|
|
#endregion
|
|
|
|
|
|
|
|
|
public ICSManufactureReceive() |
|
|
public ICSManufactureReceive() |
|
@ -5289,6 +5297,46 @@ namespace ICSSoft.Frame.Data.Entity |
|
|
} |
|
|
} |
|
|
} |
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_Desks", DbType="NVarChar(50)")] |
|
|
|
|
|
public string Desks |
|
|
|
|
|
{ |
|
|
|
|
|
get |
|
|
|
|
|
{ |
|
|
|
|
|
return this._Desks; |
|
|
|
|
|
} |
|
|
|
|
|
set |
|
|
|
|
|
{ |
|
|
|
|
|
if ((this._Desks != value)) |
|
|
|
|
|
{ |
|
|
|
|
|
this.OnDesksChanging(value); |
|
|
|
|
|
this.SendPropertyChanging(); |
|
|
|
|
|
this._Desks = value; |
|
|
|
|
|
this.SendPropertyChanged("Desks"); |
|
|
|
|
|
this.OnDesksChanged(); |
|
|
|
|
|
} |
|
|
|
|
|
} |
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_DispatcherName", DbType="VarChar(50)")] |
|
|
|
|
|
public string DispatcherName |
|
|
|
|
|
{ |
|
|
|
|
|
get |
|
|
|
|
|
{ |
|
|
|
|
|
return this._DispatcherName; |
|
|
|
|
|
} |
|
|
|
|
|
set |
|
|
|
|
|
{ |
|
|
|
|
|
if ((this._DispatcherName != value)) |
|
|
|
|
|
{ |
|
|
|
|
|
this.OnDispatcherNameChanging(value); |
|
|
|
|
|
this.SendPropertyChanging(); |
|
|
|
|
|
this._DispatcherName = value; |
|
|
|
|
|
this.SendPropertyChanged("DispatcherName"); |
|
|
|
|
|
this.OnDispatcherNameChanged(); |
|
|
|
|
|
} |
|
|
|
|
|
} |
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
public event PropertyChangingEventHandler PropertyChanging; |
|
|
public event PropertyChangingEventHandler PropertyChanging; |
|
|
|
|
|
|
|
|
public event PropertyChangedEventHandler PropertyChanged; |
|
|
public event PropertyChangedEventHandler PropertyChanged; |
|
|