///
///Data Object
///BASIC CLASS FOR TABLE t_wmsOutRequestDetail
///By wm
///on 08/04/2023
///
using System;
using System.Data;
using DeiNiu.Data.BaseObject;
namespace DeiNiu.wms.Data.Model
{
#region WmsOutRequestDetail_base
///
/// This object represents the properties and methods of a WmsOutRequestDetail_base.
///
[Serializable]
public class WmsOutRequestDetail_base : BaseModel {
internal string _orderNo = String.Empty,_OorderNo= String.Empty;
internal int _orderSn,_OorderSn;
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 string _locationId = String.Empty,_OlocationId= String.Empty;
internal string _saleDate = String.Empty,_OsaleDate= String.Empty;
internal int _state,_Ostate;
internal int _whtype,_Owhtype;
internal decimal _price,_Oprice;
internal int _priority,_Opriority;
internal string _description = String.Empty,_Odescription= String.Empty;
internal int _Ooperater;
internal string _createtime = String.Empty,_Ocreatetime= String.Empty;
public WmsOutRequestDetail_base () {
}
public WmsOutRequestDetail_base (int id) {
_id=id;
getModel();
}
public WmsOutRequestDetail_base(DataRow dr)
{
getModel(dr);
}
public WmsOutRequestDetail_base(System.Data.SqlClient.SqlConnection _Conn)
: base(_Conn)
{
}
protected override void getImp()
{
model_imp = new WmsOutRequestDetail_base_Imp();
}
#region Public Properties
public string orderNo{
get {return _orderNo;}
set {_orderNo = value;}
}
public int orderSn{
get {return _orderSn;}
set {_orderSn = value;}
}
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 string locationId{
get {return _locationId;}
set {_locationId = value;}
}
public string saleDate{
get {return _saleDate;}
set {_saleDate = value;}
}
public int state{
get {return _state;}
set {_state = value;}
}
public int whtype{
get {return _whtype;}
set {_whtype = value;}
}
public decimal price{
get {return _price;}
set {_price = value;}
}
public int priority{
get {return _priority;}
set {_priority = value;}
}
public string description{
get {return _description;}
set {_description = value;}
}
public int operater{
get {return _operater;}
set {_operater = value;}
}
public bool dr{
get {return _dr;}
}
public string createtime{
get {return _createtime;}
set {_createtime = value;}
}
public string lastmodified{
get {return _lastmodified;}
}
#endregion
#region fieldNames
public enum fields{orderNo,orderSn,skuId,skuCode,goodsId,batch,productDate,validDate,count,locationId,saleDate,state,whtype,price,priority,description,operater}
#endregion
}
#endregion
}