feat: 完善材料条码与焊接业务功能
This commit is contained in:
@@ -280322,6 +280322,8 @@ namespace Model
|
||||
private string _MaterialCode;
|
||||
|
||||
private string _BarCode;
|
||||
|
||||
private System.Nullable<decimal> _Quantity;
|
||||
|
||||
#region 可扩展性方法定义
|
||||
partial void OnLoaded();
|
||||
@@ -280337,6 +280339,8 @@ namespace Model
|
||||
partial void OnMaterialCodeChanged();
|
||||
partial void OnBarCodeChanging(string value);
|
||||
partial void OnBarCodeChanged();
|
||||
partial void OnQuantityChanging(System.Nullable<decimal> value);
|
||||
partial void OnQuantityChanged();
|
||||
#endregion
|
||||
|
||||
public Tw_InputDetailBarCode()
|
||||
@@ -280443,6 +280447,26 @@ namespace Model
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_Quantity", DbType="Decimal(18,4)")]
|
||||
public System.Nullable<decimal> Quantity
|
||||
{
|
||||
get
|
||||
{
|
||||
return this._Quantity;
|
||||
}
|
||||
set
|
||||
{
|
||||
if ((this._Quantity != value))
|
||||
{
|
||||
this.OnQuantityChanging(value);
|
||||
this.SendPropertyChanging();
|
||||
this._Quantity = value;
|
||||
this.SendPropertyChanged("Quantity");
|
||||
this.OnQuantityChanged();
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
public event PropertyChangingEventHandler PropertyChanging;
|
||||
|
||||
|
||||
Reference in New Issue
Block a user