/// ///Data Object ///BASIC CLASS FOR TABLE t_wmsOutRequestDetail ///By wm ///on 06/30/2017 /// 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; internal int _orderSn; internal string _goodsId = String.Empty; internal string _batch = String.Empty; internal string _productDate = String.Empty; internal string _validDate = String.Empty; internal decimal _count; internal string _saleDate = String.Empty; internal int _state; internal int _whtype; internal string _description = String.Empty; internal string _createtime = 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 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 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 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,goodsId,batch,productDate,validDate,count,saleDate,state,whtype,description,operater} #endregion } #endregion }