2023-05-23 16:13:17 +08:00
|
|
|
|
/// <summary>
|
|
|
|
|
///Data Object
|
|
|
|
|
///BASIC CLASS FOR TABLE t_wmsWave
|
|
|
|
|
///By wm
|
2023-09-04 22:41:19 +08:00
|
|
|
|
///on 08/04/2023
|
2023-05-23 16:13:17 +08:00
|
|
|
|
/// </summary>
|
|
|
|
|
|
|
|
|
|
using System;
|
|
|
|
|
using System.Data;
|
|
|
|
|
using DeiNiu.Data.BaseObject;
|
|
|
|
|
|
|
|
|
|
namespace DeiNiu.wms.Data.Model
|
|
|
|
|
{
|
|
|
|
|
|
|
|
|
|
#region WmsWave_base
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// This object represents the properties and methods of a WmsWave_base.
|
|
|
|
|
/// </summary>
|
|
|
|
|
[Serializable]
|
|
|
|
|
public class WmsWave_base : BaseModel {
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
internal string _waveNo = String.Empty,_OwaveNo= String.Empty;
|
|
|
|
|
internal string _seedsNo = String.Empty,_OseedsNo= String.Empty;
|
|
|
|
|
internal int _type,_Otype;
|
|
|
|
|
internal string _typeName = String.Empty,_OtypeName= String.Empty;
|
|
|
|
|
internal int _state,_Ostate;
|
|
|
|
|
internal int _partion,_Opartion;
|
|
|
|
|
internal int _deskColor,_OdeskColor;
|
|
|
|
|
internal int _mapColor,_OmapColor;
|
|
|
|
|
internal int _terminal,_Oterminal;
|
|
|
|
|
internal int _Ooperater;
|
|
|
|
|
|
|
|
|
|
internal string _createtime = String.Empty,_Ocreatetime= String.Empty;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
public WmsWave_base () {
|
|
|
|
|
}
|
|
|
|
|
public WmsWave_base (int id) {
|
|
|
|
|
_id=id;
|
|
|
|
|
getModel();
|
|
|
|
|
}
|
|
|
|
|
public WmsWave_base(DataRow dr)
|
|
|
|
|
{
|
|
|
|
|
getModel(dr);
|
|
|
|
|
}
|
|
|
|
|
public WmsWave_base(System.Data.SqlClient.SqlConnection _Conn)
|
|
|
|
|
: base(_Conn)
|
|
|
|
|
{
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
protected override void getImp()
|
|
|
|
|
{
|
|
|
|
|
model_imp = new WmsWave_base_Imp();
|
|
|
|
|
}
|
|
|
|
|
#region Public Properties
|
|
|
|
|
public string waveNo{
|
|
|
|
|
get {return _waveNo;}
|
|
|
|
|
set {_waveNo = value;}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public string seedsNo{
|
|
|
|
|
get {return _seedsNo;}
|
|
|
|
|
set {_seedsNo = value;}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public int type{
|
|
|
|
|
get {return _type;}
|
|
|
|
|
set {_type = value;}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public string typeName{
|
|
|
|
|
get {return _typeName;}
|
|
|
|
|
set {_typeName = value;}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public int state{
|
|
|
|
|
get {return _state;}
|
|
|
|
|
set {_state = value;}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public int partion{
|
|
|
|
|
get {return _partion;}
|
|
|
|
|
set {_partion = value;}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public int deskColor{
|
|
|
|
|
get {return _deskColor;}
|
|
|
|
|
set {_deskColor = value;}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public int mapColor{
|
|
|
|
|
get {return _mapColor;}
|
|
|
|
|
set {_mapColor = value;}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public int terminal{
|
|
|
|
|
get {return _terminal;}
|
|
|
|
|
set {_terminal = 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{waveNo,seedsNo,type,typeName,state,partion,deskColor,mapColor,terminal,operater}
|
|
|
|
|
#endregion
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
#endregion
|
|
|
|
|
}
|