175 lines
4.5 KiB
C#
175 lines
4.5 KiB
C#
/// <summary>
|
|
///Data Object
|
|
///BASIC CLASS FOR TABLE t_wmsStockSum
|
|
///By wm
|
|
///on 08/04/2023
|
|
/// </summary>
|
|
|
|
using System;
|
|
using System.Data;
|
|
using DeiNiu.Data.BaseObject;
|
|
|
|
namespace DeiNiu.wms.Data.Model
|
|
{
|
|
|
|
#region WmsStockSum_base
|
|
/// <summary>
|
|
/// This object represents the properties and methods of a WmsStockSum_base.
|
|
/// </summary>
|
|
[Serializable]
|
|
public class WmsStockSum_base : BaseModel {
|
|
|
|
|
|
internal int _skuId,_OskuId;
|
|
internal string _skuCode = String.Empty,_OskuCode= String.Empty;
|
|
internal string _goodsId = String.Empty,_OgoodsId= String.Empty;
|
|
internal string _batch = String.Empty,_Obatch= String.Empty;
|
|
internal string _productDate = String.Empty,_OproductDate= String.Empty;
|
|
internal string _validDate = String.Empty,_OvalidDate= String.Empty;
|
|
internal decimal _count,_Ocount;
|
|
internal decimal _countLock,_OcountLock;
|
|
internal decimal _countOut,_OcountOut;
|
|
internal decimal _countIn,_OcountIn;
|
|
internal decimal _countOuting,_OcountOuting;
|
|
internal decimal _preLockOut,_OpreLockOut;
|
|
internal int _volType,_OvolType;
|
|
internal int _whType,_OwhType;
|
|
internal int _state,_Ostate;
|
|
internal string _description = String.Empty,_Odescription= String.Empty;
|
|
internal int _Ooperater;
|
|
|
|
internal string _createtime = String.Empty,_Ocreatetime= String.Empty;
|
|
|
|
|
|
public WmsStockSum_base () {
|
|
}
|
|
public WmsStockSum_base (int id) {
|
|
_id=id;
|
|
getModel();
|
|
}
|
|
public WmsStockSum_base(DataRow dr)
|
|
{
|
|
getModel(dr);
|
|
}
|
|
public WmsStockSum_base(System.Data.SqlClient.SqlConnection _Conn)
|
|
: base(_Conn)
|
|
{
|
|
|
|
}
|
|
protected override void getImp()
|
|
{
|
|
model_imp = new WmsStockSum_base_Imp();
|
|
}
|
|
#region Public Properties
|
|
public int skuId{
|
|
get {return _skuId;}
|
|
set {_skuId = value;}
|
|
}
|
|
|
|
public string skuCode{
|
|
get {return _skuCode;}
|
|
set {_skuCode = value;}
|
|
}
|
|
|
|
public string goodsId{
|
|
get {return _goodsId;}
|
|
set {_goodsId = value;}
|
|
}
|
|
|
|
public string batch{
|
|
get {return _batch;}
|
|
set {_batch = value;}
|
|
}
|
|
|
|
public string productDate{
|
|
get {return _productDate;}
|
|
set {_productDate = value;}
|
|
}
|
|
|
|
public string validDate{
|
|
get {return _validDate;}
|
|
set {_validDate = value;}
|
|
}
|
|
|
|
public decimal count{
|
|
get {return _count;}
|
|
set {_count = value;}
|
|
}
|
|
|
|
public decimal countLock{
|
|
get {return _countLock;}
|
|
set {_countLock = value;}
|
|
}
|
|
|
|
public decimal countOut{
|
|
get {return _countOut;}
|
|
set {_countOut = value;}
|
|
}
|
|
|
|
public decimal countIn{
|
|
get {return _countIn;}
|
|
set {_countIn = value;}
|
|
}
|
|
|
|
public decimal countOuting{
|
|
get {return _countOuting;}
|
|
set {_countOuting = value;}
|
|
}
|
|
|
|
public decimal preLockOut{
|
|
get {return _preLockOut;}
|
|
set {_preLockOut = value;}
|
|
}
|
|
|
|
public int volType{
|
|
get {return _volType;}
|
|
set {_volType = value;}
|
|
}
|
|
|
|
public int whType{
|
|
get {return _whType;}
|
|
set {_whType = value;}
|
|
}
|
|
|
|
public int state{
|
|
get {return _state;}
|
|
set {_state = value;}
|
|
}
|
|
|
|
public string description{
|
|
get {return _description;}
|
|
set {_description = value;}
|
|
}
|
|
|
|
public int operater{
|
|
get {return _operater;}
|
|
set {_operater = value;}
|
|
}
|
|
|
|
public string lastmodified{
|
|
get {return _lastmodified;}
|
|
|
|
}
|
|
|
|
public string createtime{
|
|
get {return _createtime;}
|
|
set {_createtime = value;}
|
|
}
|
|
|
|
public bool dr{
|
|
get {return _dr;}
|
|
|
|
}
|
|
|
|
|
|
#endregion
|
|
|
|
#region fieldNames
|
|
public enum fields{skuId,skuCode,goodsId,batch,productDate,validDate,count,countLock,countOut,countIn,countOuting,preLockOut,volType,whType,state,description,operater}
|
|
#endregion
|
|
|
|
|
|
}
|
|
#endregion
|
|
}
|