157 lines
3.6 KiB
C#
157 lines
3.6 KiB
C#
|
/// <summary>
|
|||
|
///Data Object
|
|||
|
///BASIC CLASS FOR TABLE t_tmsViechle
|
|||
|
///By wm
|
|||
|
///on 07/31/2017
|
|||
|
/// </summary>
|
|||
|
|
|||
|
using System;
|
|||
|
using System.Data;
|
|||
|
using DeiNiu.Data.BaseObject;
|
|||
|
|
|||
|
namespace DeiNiu.wms.Data.Model
|
|||
|
{
|
|||
|
|
|||
|
#region TmsViechle_base
|
|||
|
/// <summary>
|
|||
|
/// This object represents the properties and methods of a TmsViechle_base.
|
|||
|
/// </summary>
|
|||
|
[Serializable]
|
|||
|
public class TmsViechle_base : BaseModel {
|
|||
|
|
|||
|
|
|||
|
internal string _viechleId = String.Empty;
|
|||
|
internal int _volume;
|
|||
|
internal int _load;
|
|||
|
internal int _airCondition;
|
|||
|
internal decimal _length;
|
|||
|
internal decimal _width;
|
|||
|
internal decimal _height;
|
|||
|
internal decimal _weight;
|
|||
|
internal int _owner;
|
|||
|
internal int _driver;
|
|||
|
internal int _state;
|
|||
|
internal string _transOrder = String.Empty;
|
|||
|
internal int _transState;
|
|||
|
|
|||
|
|
|||
|
internal string _createtime = String.Empty;
|
|||
|
|
|||
|
|
|||
|
public TmsViechle_base () {
|
|||
|
}
|
|||
|
public TmsViechle_base (int id) {
|
|||
|
_id=id;
|
|||
|
getModel();
|
|||
|
}
|
|||
|
public TmsViechle_base(DataRow dr)
|
|||
|
{
|
|||
|
getModel(dr);
|
|||
|
}
|
|||
|
public TmsViechle_base(System.Data.SqlClient.SqlConnection _Conn)
|
|||
|
: base(_Conn)
|
|||
|
{
|
|||
|
|
|||
|
}
|
|||
|
protected override void getImp()
|
|||
|
{
|
|||
|
model_imp = new TmsViechle_base_Imp();
|
|||
|
}
|
|||
|
#region Public Properties
|
|||
|
public string viechleId{
|
|||
|
get {return _viechleId;}
|
|||
|
set {_viechleId = value;}
|
|||
|
}
|
|||
|
|
|||
|
public int volume{
|
|||
|
get {return _volume;}
|
|||
|
set {_volume = value;}
|
|||
|
}
|
|||
|
|
|||
|
public int load{
|
|||
|
get {return _load;}
|
|||
|
set {_load = value;}
|
|||
|
}
|
|||
|
|
|||
|
public int airCondition{
|
|||
|
get {return _airCondition;}
|
|||
|
set {_airCondition = 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 decimal weight{
|
|||
|
get {return _weight;}
|
|||
|
set {_weight = value;}
|
|||
|
}
|
|||
|
|
|||
|
public int owner{
|
|||
|
get {return _owner;}
|
|||
|
set {_owner = value;}
|
|||
|
}
|
|||
|
|
|||
|
public int driver{
|
|||
|
get {return _driver;}
|
|||
|
set {_driver = value;}
|
|||
|
}
|
|||
|
|
|||
|
public int state{
|
|||
|
get {return _state;}
|
|||
|
set {_state = value;}
|
|||
|
}
|
|||
|
|
|||
|
public string transOrder{
|
|||
|
get {return _transOrder;}
|
|||
|
set {_transOrder = value;}
|
|||
|
}
|
|||
|
|
|||
|
public int transState{
|
|||
|
get {return _transState;}
|
|||
|
set {_transState = value;}
|
|||
|
}
|
|||
|
|
|||
|
public int operater{
|
|||
|
get {return _operater;}
|
|||
|
set {_operater = value;}
|
|||
|
}
|
|||
|
|
|||
|
public string lastmodified{
|
|||
|
get {return _lastmodified;}
|
|||
|
|
|||
|
}
|
|||
|
|
|||
|
public string createtime{
|
|||
|
get {return _createtime;}
|
|||
|
set {_createtime = value;}
|
|||
|
}
|
|||
|
|
|||
|
public bool dr{
|
|||
|
get {return _dr;}
|
|||
|
|
|||
|
}
|
|||
|
|
|||
|
|
|||
|
#endregion
|
|||
|
|
|||
|
#region fieldNames
|
|||
|
public enum fields{viechleId,volume,load,airCondition,length,width,height,weight,owner,driver,state,transOrder,transState,operater}
|
|||
|
#endregion
|
|||
|
|
|||
|
|
|||
|
}
|
|||
|
#endregion
|
|||
|
}
|