169 lines
4.5 KiB
C#
169 lines
4.5 KiB
C#
/// <summary>
|
|
///Data Object
|
|
///BASIC CLASS FOR TABLE t_wmsStockPandian
|
|
///By wm
|
|
///on 10/11/2023
|
|
/// </summary>
|
|
|
|
using System;
|
|
using System.Data;
|
|
using DeiNiu.Data.BaseObject;
|
|
|
|
namespace DeiNiu.wms.Data.Model
|
|
{
|
|
|
|
#region WmsStockPandian_base
|
|
/// <summary>
|
|
/// This object represents the properties and methods of a WmsStockPandian_base.
|
|
/// </summary>
|
|
[Serializable]
|
|
public class WmsStockPandian_base : BaseModel {
|
|
|
|
|
|
internal string _orderNo = String.Empty,_OorderNo= String.Empty;
|
|
internal int _ownerId,_OownerId;
|
|
internal int _type,_Otype;
|
|
internal int _status,_Ostatus;
|
|
internal string _planStartTime = String.Empty,_OplanStartTime= String.Empty;
|
|
internal string _planEndTime = String.Empty,_OplanEndTime= String.Empty;
|
|
internal string _startTime = String.Empty,_OstartTime= String.Empty;
|
|
internal string _endTime = String.Empty,_OendTime= String.Empty;
|
|
internal int _createby,_Ocreateby;
|
|
internal int _priority,_Opriority;
|
|
internal int _approvedby,_Oapprovedby;
|
|
internal string _inputValus = String.Empty,_OinputValus= String.Empty;
|
|
internal string _condition = String.Empty,_Ocondition= String.Empty;
|
|
internal int _adjustStatus,_OadjustStatus;
|
|
internal bool _noticeErp,_OnoticeErp;
|
|
internal int _Ooperater;
|
|
|
|
internal string _createtime = String.Empty,_Ocreatetime= String.Empty;
|
|
|
|
|
|
public WmsStockPandian_base () {
|
|
}
|
|
public WmsStockPandian_base (int id) {
|
|
_id=id;
|
|
getModel();
|
|
}
|
|
public WmsStockPandian_base(DataRow dr)
|
|
{
|
|
getModel(dr);
|
|
}
|
|
public WmsStockPandian_base(System.Data.SqlClient.SqlConnection _Conn)
|
|
: base(_Conn)
|
|
{
|
|
|
|
}
|
|
protected override void getImp()
|
|
{
|
|
model_imp = new WmsStockPandian_base_Imp();
|
|
}
|
|
#region Public Properties
|
|
public string orderNo{
|
|
get {return _orderNo;}
|
|
set {_orderNo = value;}
|
|
}
|
|
|
|
public int ownerId{
|
|
get {return _ownerId;}
|
|
set {_ownerId = value;}
|
|
}
|
|
|
|
public int type{
|
|
get {return _type;}
|
|
set {_type = value;}
|
|
}
|
|
|
|
public int status{
|
|
get {return _status;}
|
|
set {_status = value;}
|
|
}
|
|
|
|
public string planStartTime{
|
|
get {return _planStartTime;}
|
|
set {_planStartTime = value;}
|
|
}
|
|
|
|
public string planEndTime{
|
|
get {return _planEndTime;}
|
|
set {_planEndTime = value;}
|
|
}
|
|
|
|
public string startTime{
|
|
get {return _startTime;}
|
|
set {_startTime = value;}
|
|
}
|
|
|
|
public string endTime{
|
|
get {return _endTime;}
|
|
set {_endTime = value;}
|
|
}
|
|
|
|
public int createby{
|
|
get {return _createby;}
|
|
set {_createby = value;}
|
|
}
|
|
|
|
public int priority{
|
|
get {return _priority;}
|
|
set {_priority = value;}
|
|
}
|
|
|
|
public int approvedby{
|
|
get {return _approvedby;}
|
|
set {_approvedby = value;}
|
|
}
|
|
|
|
public string inputValus{
|
|
get {return _inputValus;}
|
|
set {_inputValus = value;}
|
|
}
|
|
|
|
public string condition{
|
|
get {return _condition;}
|
|
set {_condition = value;}
|
|
}
|
|
|
|
public int adjustStatus{
|
|
get {return _adjustStatus;}
|
|
set {_adjustStatus = value;}
|
|
}
|
|
|
|
public bool noticeErp{
|
|
get {return _noticeErp;}
|
|
set {_noticeErp = 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,ownerId,type,status,planStartTime,planEndTime,startTime,endTime,createby,priority,approvedby,inputValus,condition,adjustStatus,noticeErp,operater}
|
|
#endregion
|
|
|
|
|
|
}
|
|
#endregion
|
|
}
|