/// ///Data Object ///BASIC CLASS FOR TABLE t_wmsOutBox ///By wm ///on 04/06/2020 /// using System; using System.Data; using DeiNiu.Data.BaseObject; namespace DeiNiu.wms.Data.Model { #region WmsOutBox_base /// /// This object represents the properties and methods of a WmsOutBox_base. /// [Serializable] public class WmsOutBox_base : BaseModel { internal string _boxid = String.Empty; internal int _color; internal string _waveNo = String.Empty; internal string _pickOrderNo = String.Empty; internal string _transNo = String.Empty; internal int _partion; internal string _locationId = String.Empty; internal int _load; internal decimal _volume; internal decimal _length; internal decimal _width; internal decimal _height; internal int _type; internal int _state; internal string _createtime = String.Empty; public WmsOutBox_base () { } public WmsOutBox_base (int id) { _id=id; getModel(); } public WmsOutBox_base(DataRow dr) { getModel(dr); } public WmsOutBox_base(System.Data.SqlClient.SqlConnection _Conn) : base(_Conn) { } protected override void getImp() { model_imp = new WmsOutBox_base_Imp(); } #region Public Properties public string boxid{ get {return _boxid;} set {_boxid = value;} } public int color{ get {return _color;} set {_color = value;} } public string waveNo{ get {return _waveNo;} set {_waveNo = value;} } public string pickOrderNo{ get {return _pickOrderNo;} set {_pickOrderNo = value;} } public string transNo{ get {return _transNo;} set {_transNo = value;} } public int partion{ get {return _partion;} set {_partion = value;} } public string locationId{ get {return _locationId;} set {_locationId = value;} } public int load{ get {return _load;} set {_load = value;} } public decimal volume{ get {return _volume;} set {_volume = value;} } public decimal length{ get {return _length;} set {_length = value;} } public decimal width{ get {return _width;} set {_width = value;} } public decimal height{ get {return _height;} set {_height = value;} } public int type{ get {return _type;} set {_type = value;} } public int state{ get {return _state;} set {_state = 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{boxid,color,waveNo,pickOrderNo,transNo,partion,locationId,load,volume,length,width,height,type,state,operater} #endregion } #endregion }