物资管理API
This commit is contained in:
@@ -101203,6 +101203,8 @@ namespace Model
|
||||
|
||||
private System.Nullable<decimal> _RQuantity;
|
||||
|
||||
private string _Ghfs;
|
||||
|
||||
#region 可扩展性方法定义
|
||||
partial void OnLoaded();
|
||||
partial void OnValidate(System.Data.Linq.ChangeAction action);
|
||||
@@ -101251,6 +101253,8 @@ namespace Model
|
||||
partial void OnReturnSheetSIDChanged();
|
||||
partial void OnRQuantityChanging(System.Nullable<decimal> value);
|
||||
partial void OnRQuantityChanged();
|
||||
partial void OnGhfsChanging(string value);
|
||||
partial void OnGhfsChanged();
|
||||
#endregion
|
||||
|
||||
public Cl_w_comp()
|
||||
@@ -101698,6 +101702,26 @@ namespace Model
|
||||
}
|
||||
}
|
||||
|
||||
[global::System.Data.Linq.Mapping.ColumnAttribute(Name="ghfs", Storage="_Ghfs", DbType="NVarChar(10)")]
|
||||
public string Ghfs
|
||||
{
|
||||
get
|
||||
{
|
||||
return this._Ghfs;
|
||||
}
|
||||
set
|
||||
{
|
||||
if ((this._Ghfs != value))
|
||||
{
|
||||
this.OnGhfsChanging(value);
|
||||
this.SendPropertyChanging();
|
||||
this._Ghfs = value;
|
||||
this.SendPropertyChanged("Ghfs");
|
||||
this.OnGhfsChanged();
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
public event PropertyChangingEventHandler PropertyChanging;
|
||||
|
||||
public event PropertyChangedEventHandler PropertyChanged;
|
||||
@@ -104864,6 +104888,8 @@ namespace Model
|
||||
|
||||
private string _InstallationId;
|
||||
|
||||
private string _Ghfs;
|
||||
|
||||
private EntitySet<Cl_W_MaterialReturnS> _Cl_W_MaterialReturnS;
|
||||
|
||||
#region 可扩展性方法定义
|
||||
@@ -104908,6 +104934,8 @@ namespace Model
|
||||
partial void OnUAidChanged();
|
||||
partial void OnInstallationIdChanging(string value);
|
||||
partial void OnInstallationIdChanged();
|
||||
partial void OnGhfsChanging(string value);
|
||||
partial void OnGhfsChanged();
|
||||
#endregion
|
||||
|
||||
public Cl_W_MaterialReturnM()
|
||||
@@ -105296,6 +105324,26 @@ namespace Model
|
||||
}
|
||||
}
|
||||
|
||||
[global::System.Data.Linq.Mapping.ColumnAttribute(Name="ghfs", Storage="_Ghfs", DbType="NVarChar(10)", UpdateCheck=UpdateCheck.Never)]
|
||||
public string Ghfs
|
||||
{
|
||||
get
|
||||
{
|
||||
return this._Ghfs;
|
||||
}
|
||||
set
|
||||
{
|
||||
if ((this._Ghfs != value))
|
||||
{
|
||||
this.OnGhfsChanging(value);
|
||||
this.SendPropertyChanging();
|
||||
this._Ghfs = value;
|
||||
this.SendPropertyChanged("Ghfs");
|
||||
this.OnGhfsChanged();
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
[global::System.Data.Linq.Mapping.AssociationAttribute(Name="FK_CL_W_MAT_REFERENCE_CL_W_MAT", Storage="_Cl_W_MaterialReturnS", ThisKey="ReturnSheetMid", OtherKey="ReturnSheetMid", DeleteRule="NO ACTION")]
|
||||
public EntitySet<Cl_W_MaterialReturnS> Cl_W_MaterialReturnS
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user