/// ///Data Object ///BASIC CLASS FOR TABLE t_wmsDeskCustomer ///By wm ///on 05/27/2024 /// using System; using System.Data; using DeiNiu.Data.BaseObject; namespace DeiNiu.wms.Data.Model { #region WmsDeskCustomer_base /// /// This object represents the properties and methods of a WmsDeskCustomer_base. /// [Serializable] public class WmsDeskCustomer_base : BaseModel { internal int _partion,_Opartion; internal int _deskId,_OdeskId; internal string _custid = String.Empty,_Ocustid= String.Empty; internal string _custName = String.Empty,_OcustName= String.Empty; internal int _lightId,_OlightId; internal string _flowNo = String.Empty,_OflowNo= String.Empty; internal string _partionName = String.Empty,_OpartionName= String.Empty; internal string _mem = String.Empty,_Omem= String.Empty; internal int _portNo,_OportNo; internal int _Ooperater; internal string _createtime = String.Empty,_Ocreatetime= String.Empty; public WmsDeskCustomer_base () { } public WmsDeskCustomer_base (int id) { _id=id; getModel(); } public WmsDeskCustomer_base(DataRow dr) { getModel(dr); } public WmsDeskCustomer_base(System.Data.SqlClient.SqlConnection _Conn) : base(_Conn) { } protected override void getImp() { model_imp = new WmsDeskCustomer_base_Imp(); } #region Public Properties public int partion{ get {return _partion;} set {_partion = value;} } public int deskId{ get {return _deskId;} set {_deskId = value;} } public string custid{ get {return _custid;} set {_custid = value;} } public string custName{ get {return _custName;} set {_custName = value;} } public int lightId{ get {return _lightId;} set {_lightId = value;} } public string flowNo{ get {return _flowNo;} set {_flowNo = value;} } public string partionName{ get {return _partionName;} set {_partionName = value;} } public string mem{ get {return _mem;} set {_mem = value;} } public int portNo{ get {return _portNo;} set {_portNo = 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{partion,deskId,custid,custName,lightId,flowNo,partionName,mem,portNo,operater} #endregion } #endregion }