|
@ -5258,6 +5258,16 @@ namespace ICSSoft.Frame.Data.Entity |
|
|
|
|
|
|
|
|
private string _WHCode; |
|
|
private string _WHCode; |
|
|
|
|
|
|
|
|
|
|
|
private string _InspectionType; |
|
|
|
|
|
|
|
|
|
|
|
private string _InvoDescribe; |
|
|
|
|
|
|
|
|
|
|
|
private string _Unity; |
|
|
|
|
|
|
|
|
|
|
|
private string _StockIndicator; |
|
|
|
|
|
|
|
|
|
|
|
private string _DepositArea; |
|
|
|
|
|
|
|
|
#region 可扩展性方法定义
|
|
|
#region 可扩展性方法定义
|
|
|
partial void OnLoaded(); |
|
|
partial void OnLoaded(); |
|
|
partial void OnValidate(System.Data.Linq.ChangeAction action); |
|
|
partial void OnValidate(System.Data.Linq.ChangeAction action); |
|
@ -5316,6 +5326,16 @@ namespace ICSSoft.Frame.Data.Entity |
|
|
partial void OnASNCodeChanged(); |
|
|
partial void OnASNCodeChanged(); |
|
|
partial void OnWHCodeChanging(string value); |
|
|
partial void OnWHCodeChanging(string value); |
|
|
partial void OnWHCodeChanged(); |
|
|
partial void OnWHCodeChanged(); |
|
|
|
|
|
partial void OnInspectionTypeChanging(string value); |
|
|
|
|
|
partial void OnInspectionTypeChanged(); |
|
|
|
|
|
partial void OnInvoDescribeChanging(string value); |
|
|
|
|
|
partial void OnInvoDescribeChanged(); |
|
|
|
|
|
partial void OnUnityChanging(string value); |
|
|
|
|
|
partial void OnUnityChanged(); |
|
|
|
|
|
partial void OnStockIndicatorChanging(string value); |
|
|
|
|
|
partial void OnStockIndicatorChanged(); |
|
|
|
|
|
partial void OnDepositAreaChanging(string value); |
|
|
|
|
|
partial void OnDepositAreaChanged(); |
|
|
#endregion
|
|
|
#endregion
|
|
|
|
|
|
|
|
|
public ICSDeliveryNotice() |
|
|
public ICSDeliveryNotice() |
|
@ -5863,6 +5883,106 @@ namespace ICSSoft.Frame.Data.Entity |
|
|
} |
|
|
} |
|
|
} |
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_InspectionType", DbType="NVarChar(50) NOT NULL")] |
|
|
|
|
|
public string InspectionType |
|
|
|
|
|
{ |
|
|
|
|
|
get |
|
|
|
|
|
{ |
|
|
|
|
|
return this._InspectionType; |
|
|
|
|
|
} |
|
|
|
|
|
set |
|
|
|
|
|
{ |
|
|
|
|
|
if ((this._InspectionType != value)) |
|
|
|
|
|
{ |
|
|
|
|
|
this.OnInspectionTypeChanging(value); |
|
|
|
|
|
this.SendPropertyChanging(); |
|
|
|
|
|
this._InspectionType = value; |
|
|
|
|
|
this.SendPropertyChanged("InspectionType"); |
|
|
|
|
|
this.OnInspectionTypeChanged(); |
|
|
|
|
|
} |
|
|
|
|
|
} |
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_InvoDescribe", DbType="NVarChar(50)")] |
|
|
|
|
|
public string InvoDescribe |
|
|
|
|
|
{ |
|
|
|
|
|
get |
|
|
|
|
|
{ |
|
|
|
|
|
return this._InvoDescribe; |
|
|
|
|
|
} |
|
|
|
|
|
set |
|
|
|
|
|
{ |
|
|
|
|
|
if ((this._InvoDescribe != value)) |
|
|
|
|
|
{ |
|
|
|
|
|
this.OnInvoDescribeChanging(value); |
|
|
|
|
|
this.SendPropertyChanging(); |
|
|
|
|
|
this._InvoDescribe = value; |
|
|
|
|
|
this.SendPropertyChanged("InvoDescribe"); |
|
|
|
|
|
this.OnInvoDescribeChanged(); |
|
|
|
|
|
} |
|
|
|
|
|
} |
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_Unity", DbType="VarChar(50)")] |
|
|
|
|
|
public string Unity |
|
|
|
|
|
{ |
|
|
|
|
|
get |
|
|
|
|
|
{ |
|
|
|
|
|
return this._Unity; |
|
|
|
|
|
} |
|
|
|
|
|
set |
|
|
|
|
|
{ |
|
|
|
|
|
if ((this._Unity != value)) |
|
|
|
|
|
{ |
|
|
|
|
|
this.OnUnityChanging(value); |
|
|
|
|
|
this.SendPropertyChanging(); |
|
|
|
|
|
this._Unity = value; |
|
|
|
|
|
this.SendPropertyChanged("Unity"); |
|
|
|
|
|
this.OnUnityChanged(); |
|
|
|
|
|
} |
|
|
|
|
|
} |
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_StockIndicator", DbType="NVarChar(50)")] |
|
|
|
|
|
public string StockIndicator |
|
|
|
|
|
{ |
|
|
|
|
|
get |
|
|
|
|
|
{ |
|
|
|
|
|
return this._StockIndicator; |
|
|
|
|
|
} |
|
|
|
|
|
set |
|
|
|
|
|
{ |
|
|
|
|
|
if ((this._StockIndicator != value)) |
|
|
|
|
|
{ |
|
|
|
|
|
this.OnStockIndicatorChanging(value); |
|
|
|
|
|
this.SendPropertyChanging(); |
|
|
|
|
|
this._StockIndicator = value; |
|
|
|
|
|
this.SendPropertyChanged("StockIndicator"); |
|
|
|
|
|
this.OnStockIndicatorChanged(); |
|
|
|
|
|
} |
|
|
|
|
|
} |
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_DepositArea", DbType="VarChar(50)")] |
|
|
|
|
|
public string DepositArea |
|
|
|
|
|
{ |
|
|
|
|
|
get |
|
|
|
|
|
{ |
|
|
|
|
|
return this._DepositArea; |
|
|
|
|
|
} |
|
|
|
|
|
set |
|
|
|
|
|
{ |
|
|
|
|
|
if ((this._DepositArea != value)) |
|
|
|
|
|
{ |
|
|
|
|
|
this.OnDepositAreaChanging(value); |
|
|
|
|
|
this.SendPropertyChanging(); |
|
|
|
|
|
this._DepositArea = value; |
|
|
|
|
|
this.SendPropertyChanged("DepositArea"); |
|
|
|
|
|
this.OnDepositAreaChanged(); |
|
|
|
|
|
} |
|
|
|
|
|
} |
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
public event PropertyChangingEventHandler PropertyChanging; |
|
|
public event PropertyChangingEventHandler PropertyChanging; |
|
|
|
|
|
|
|
|
public event PropertyChangedEventHandler PropertyChanged; |
|
|
public event PropertyChangedEventHandler PropertyChanged; |
|
|