97 lines
2.0 KiB
C#
97 lines
2.0 KiB
C#
|
/// <summary>
|
|||
|
///Data Object
|
|||
|
///BASIC CLASS FOR TABLE t_wmsReceive
|
|||
|
///By wm
|
|||
|
///on 06/30/2017
|
|||
|
/// </summary>
|
|||
|
|
|||
|
using System;
|
|||
|
using System.Data;
|
|||
|
using DeiNiu.Data.BaseObject;
|
|||
|
|
|||
|
namespace DeiNiu.wms.Data.Model
|
|||
|
{
|
|||
|
|
|||
|
#region WmsReceive_base
|
|||
|
/// <summary>
|
|||
|
/// This object represents the properties and methods of a WmsReceive_base.
|
|||
|
/// </summary>
|
|||
|
[Serializable]
|
|||
|
public class WmsReceive_base : BaseModel {
|
|||
|
|
|||
|
|
|||
|
internal string _orderNo = String.Empty;
|
|||
|
internal int _state;
|
|||
|
internal string _description = String.Empty;
|
|||
|
|
|||
|
|
|||
|
internal string _createtime = String.Empty;
|
|||
|
|
|||
|
|
|||
|
public WmsReceive_base () {
|
|||
|
}
|
|||
|
public WmsReceive_base (int id) {
|
|||
|
_id=id;
|
|||
|
getModel();
|
|||
|
}
|
|||
|
public WmsReceive_base(DataRow dr)
|
|||
|
{
|
|||
|
getModel(dr);
|
|||
|
}
|
|||
|
public WmsReceive_base(System.Data.SqlClient.SqlConnection _Conn)
|
|||
|
: base(_Conn)
|
|||
|
{
|
|||
|
|
|||
|
}
|
|||
|
protected override void getImp()
|
|||
|
{
|
|||
|
model_imp = new WmsReceive_base_Imp();
|
|||
|
}
|
|||
|
#region Public Properties
|
|||
|
public string orderNo{
|
|||
|
get {return _orderNo;}
|
|||
|
set {_orderNo = value;}
|
|||
|
}
|
|||
|
|
|||
|
public int state{
|
|||
|
get {return _state;}
|
|||
|
set {_state = value;}
|
|||
|
}
|
|||
|
|
|||
|
public string description{
|
|||
|
get {return _description;}
|
|||
|
set {_description = 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{orderNo,state,description,operater}
|
|||
|
#endregion
|
|||
|
|
|||
|
|
|||
|
}
|
|||
|
#endregion
|
|||
|
}
|