ldj/epickpublic/BLL/wms/data/basic/WmsOutBox_base.cs

127 lines
2.7 KiB
C#

/// <summary>
///Data Object
///BASIC CLASS FOR TABLE t_wmsOutBox
///By wm
///on 04/08/2018
/// </summary>
using System;
using System.Data;
using DeiNiu.Data.BaseObject;
namespace DeiNiu.wms.Data.Model
{
#region WmsOutBox_base
/// <summary>
/// This object represents the properties and methods of a WmsOutBox_base.
/// </summary>
[Serializable]
public class WmsOutBox_base : BaseModel {
internal string _boxid = String.Empty;
internal int _color;
internal string _waveNo = String.Empty;
internal int _volume;
internal int _length;
internal int _width;
internal int _height;
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 int volume{
get {return _volume;}
set {_volume = value;}
}
public int length{
get {return _length;}
set {_length = value;}
}
public int width{
get {return _width;}
set {_width = value;}
}
public int height{
get {return _height;}
set {_height = 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,volume,length,width,height,state,operater}
#endregion
}
#endregion
}