|
|
@ -372,6 +372,10 @@ namespace ICSSoft.Frame.Data.Entity |
|
|
|
|
|
|
|
private string _EATTRIBUTE1; |
|
|
|
|
|
|
|
private string _DrawingNo; |
|
|
|
|
|
|
|
private string _Version; |
|
|
|
|
|
|
|
#region 可扩展性方法定义
|
|
|
|
partial void OnLoaded(); |
|
|
|
partial void OnValidate(System.Data.Linq.ChangeAction action); |
|
|
@ -426,6 +430,10 @@ namespace ICSSoft.Frame.Data.Entity |
|
|
|
partial void OnWorkPointChanged(); |
|
|
|
partial void OnEATTRIBUTE1Changing(string value); |
|
|
|
partial void OnEATTRIBUTE1Changed(); |
|
|
|
partial void OnDrawingNoChanging(string value); |
|
|
|
partial void OnDrawingNoChanged(); |
|
|
|
partial void OnVersionChanging(string value); |
|
|
|
partial void OnVersionChanged(); |
|
|
|
#endregion
|
|
|
|
|
|
|
|
public ICSInventory() |
|
|
@ -933,6 +941,46 @@ namespace ICSSoft.Frame.Data.Entity |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_DrawingNo", DbType="NVarChar(50)")] |
|
|
|
public string DrawingNo |
|
|
|
{ |
|
|
|
get |
|
|
|
{ |
|
|
|
return this._DrawingNo; |
|
|
|
} |
|
|
|
set |
|
|
|
{ |
|
|
|
if ((this._DrawingNo != value)) |
|
|
|
{ |
|
|
|
this.OnDrawingNoChanging(value); |
|
|
|
this.SendPropertyChanging(); |
|
|
|
this._DrawingNo = value; |
|
|
|
this.SendPropertyChanged("DrawingNo"); |
|
|
|
this.OnDrawingNoChanged(); |
|
|
|
} |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_Version", DbType="NVarChar(50)")] |
|
|
|
public string Version |
|
|
|
{ |
|
|
|
get |
|
|
|
{ |
|
|
|
return this._Version; |
|
|
|
} |
|
|
|
set |
|
|
|
{ |
|
|
|
if ((this._Version != value)) |
|
|
|
{ |
|
|
|
this.OnVersionChanging(value); |
|
|
|
this.SendPropertyChanging(); |
|
|
|
this._Version = value; |
|
|
|
this.SendPropertyChanged("Version"); |
|
|
|
this.OnVersionChanged(); |
|
|
|
} |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
public event PropertyChangingEventHandler PropertyChanging; |
|
|
|
|
|
|
|
public event PropertyChangedEventHandler PropertyChanged; |
|
|
@ -10826,6 +10874,12 @@ namespace ICSSoft.Frame.Data.Entity |
|
|
|
|
|
|
|
private string _SAPSequence; |
|
|
|
|
|
|
|
private string _ModificationDate; |
|
|
|
|
|
|
|
private string _TrackingNumber; |
|
|
|
|
|
|
|
private string _NonconformingForm; |
|
|
|
|
|
|
|
#region 可扩展性方法定义
|
|
|
|
partial void OnLoaded(); |
|
|
|
partial void OnValidate(System.Data.Linq.ChangeAction action); |
|
|
@ -10896,6 +10950,12 @@ namespace ICSSoft.Frame.Data.Entity |
|
|
|
partial void OnDepositAreaChanged(); |
|
|
|
partial void OnSAPSequenceChanging(string value); |
|
|
|
partial void OnSAPSequenceChanged(); |
|
|
|
partial void OnModificationDateChanging(string value); |
|
|
|
partial void OnModificationDateChanged(); |
|
|
|
partial void OnTrackingNumberChanging(string value); |
|
|
|
partial void OnTrackingNumberChanged(); |
|
|
|
partial void OnNonconformingFormChanging(string value); |
|
|
|
partial void OnNonconformingFormChanged(); |
|
|
|
#endregion
|
|
|
|
|
|
|
|
public ICSDeliveryNotice() |
|
|
@ -11563,6 +11623,66 @@ namespace ICSSoft.Frame.Data.Entity |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_ModificationDate", DbType="VarChar(50)")] |
|
|
|
public string ModificationDate |
|
|
|
{ |
|
|
|
get |
|
|
|
{ |
|
|
|
return this._ModificationDate; |
|
|
|
} |
|
|
|
set |
|
|
|
{ |
|
|
|
if ((this._ModificationDate != value)) |
|
|
|
{ |
|
|
|
this.OnModificationDateChanging(value); |
|
|
|
this.SendPropertyChanging(); |
|
|
|
this._ModificationDate = value; |
|
|
|
this.SendPropertyChanged("ModificationDate"); |
|
|
|
this.OnModificationDateChanged(); |
|
|
|
} |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_TrackingNumber", DbType="VarChar(50)")] |
|
|
|
public string TrackingNumber |
|
|
|
{ |
|
|
|
get |
|
|
|
{ |
|
|
|
return this._TrackingNumber; |
|
|
|
} |
|
|
|
set |
|
|
|
{ |
|
|
|
if ((this._TrackingNumber != value)) |
|
|
|
{ |
|
|
|
this.OnTrackingNumberChanging(value); |
|
|
|
this.SendPropertyChanging(); |
|
|
|
this._TrackingNumber = value; |
|
|
|
this.SendPropertyChanged("TrackingNumber"); |
|
|
|
this.OnTrackingNumberChanged(); |
|
|
|
} |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_NonconformingForm", DbType="VarChar(50)")] |
|
|
|
public string NonconformingForm |
|
|
|
{ |
|
|
|
get |
|
|
|
{ |
|
|
|
return this._NonconformingForm; |
|
|
|
} |
|
|
|
set |
|
|
|
{ |
|
|
|
if ((this._NonconformingForm != value)) |
|
|
|
{ |
|
|
|
this.OnNonconformingFormChanging(value); |
|
|
|
this.SendPropertyChanging(); |
|
|
|
this._NonconformingForm = value; |
|
|
|
this.SendPropertyChanged("NonconformingForm"); |
|
|
|
this.OnNonconformingFormChanged(); |
|
|
|
} |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
public event PropertyChangingEventHandler PropertyChanging; |
|
|
|
|
|
|
|
public event PropertyChangedEventHandler PropertyChanged; |
|
|
@ -11636,6 +11756,10 @@ namespace ICSSoft.Frame.Data.Entity |
|
|
|
|
|
|
|
private string _SAPSequence; |
|
|
|
|
|
|
|
private string _VenCode; |
|
|
|
|
|
|
|
private string _VenName; |
|
|
|
|
|
|
|
#region 可扩展性方法定义
|
|
|
|
partial void OnLoaded(); |
|
|
|
partial void OnValidate(System.Data.Linq.ChangeAction action); |
|
|
@ -11686,6 +11810,10 @@ namespace ICSSoft.Frame.Data.Entity |
|
|
|
partial void OnEATTRIBUTEChanged(); |
|
|
|
partial void OnSAPSequenceChanging(string value); |
|
|
|
partial void OnSAPSequenceChanged(); |
|
|
|
partial void OnVenCodeChanging(string value); |
|
|
|
partial void OnVenCodeChanged(); |
|
|
|
partial void OnVenNameChanging(string value); |
|
|
|
partial void OnVenNameChanged(); |
|
|
|
#endregion
|
|
|
|
|
|
|
|
public ICSOApply() |
|
|
@ -12153,6 +12281,46 @@ namespace ICSSoft.Frame.Data.Entity |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_VenCode", DbType="NVarChar(50)")] |
|
|
|
public string VenCode |
|
|
|
{ |
|
|
|
get |
|
|
|
{ |
|
|
|
return this._VenCode; |
|
|
|
} |
|
|
|
set |
|
|
|
{ |
|
|
|
if ((this._VenCode != value)) |
|
|
|
{ |
|
|
|
this.OnVenCodeChanging(value); |
|
|
|
this.SendPropertyChanging(); |
|
|
|
this._VenCode = value; |
|
|
|
this.SendPropertyChanged("VenCode"); |
|
|
|
this.OnVenCodeChanged(); |
|
|
|
} |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_VenName", DbType="NVarChar(50)")] |
|
|
|
public string VenName |
|
|
|
{ |
|
|
|
get |
|
|
|
{ |
|
|
|
return this._VenName; |
|
|
|
} |
|
|
|
set |
|
|
|
{ |
|
|
|
if ((this._VenName != value)) |
|
|
|
{ |
|
|
|
this.OnVenNameChanging(value); |
|
|
|
this.SendPropertyChanging(); |
|
|
|
this._VenName = value; |
|
|
|
this.SendPropertyChanged("VenName"); |
|
|
|
this.OnVenNameChanged(); |
|
|
|
} |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
public event PropertyChangingEventHandler PropertyChanging; |
|
|
|
|
|
|
|
public event PropertyChangedEventHandler PropertyChanged; |
|
|
|