ldj/Model/wms/data/basic/Erp_purch_receive_pre_base.cs

145 lines
3.7 KiB
C#
Raw Normal View History

2023-05-23 16:13:17 +08:00
/// <summary>
///Data Object
///BASIC CLASS FOR TABLE t_erp_purch_receive_pre
///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 Erp_purch_receive_pre_base
/// <summary>
/// This object represents the properties and methods of a Erp_purch_receive_pre_base.
/// </summary>
[Serializable]
public class Erp_purch_receive_pre_base : BaseModel {
internal string _preInOrderNo = String.Empty,_OpreInOrderNo= String.Empty;
internal string _pur_order = String.Empty,_Opur_order= String.Empty;
internal int _orderType,_OorderType;
internal int _purch_d_id,_Opurch_d_id;
internal int _shipId,_OshipId;
internal decimal _arriveCount,_OarriveCount;
internal decimal _receiveCount,_OreceiveCount;
internal decimal _validCount,_OvalidCount;
internal decimal _onShelfCount,_OonShelfCount;
internal string _mem = String.Empty,_Omem= String.Empty;
2023-09-04 22:41:19 +08:00
internal int _state,_Ostate;
2023-05-23 16:13:17 +08:00
internal int _Ooperater;
internal string _createtime = String.Empty,_Ocreatetime= String.Empty;
public Erp_purch_receive_pre_base () {
}
public Erp_purch_receive_pre_base (int id) {
_id=id;
getModel();
}
public Erp_purch_receive_pre_base(DataRow dr)
{
getModel(dr);
}
public Erp_purch_receive_pre_base(System.Data.SqlClient.SqlConnection _Conn)
: base(_Conn)
{
}
protected override void getImp()
{
model_imp = new Erp_purch_receive_pre_base_Imp();
}
#region Public Properties
public string preInOrderNo{
get {return _preInOrderNo;}
set {_preInOrderNo = value;}
}
public string pur_order{
get {return _pur_order;}
set {_pur_order = value;}
}
public int orderType{
get {return _orderType;}
set {_orderType = value;}
}
public int purch_d_id{
get {return _purch_d_id;}
set {_purch_d_id = value;}
}
public int shipId{
get {return _shipId;}
set {_shipId = value;}
}
public decimal arriveCount{
get {return _arriveCount;}
set {_arriveCount = value;}
}
public decimal receiveCount{
get {return _receiveCount;}
set {_receiveCount = value;}
}
public decimal validCount{
get {return _validCount;}
set {_validCount = value;}
}
public decimal onShelfCount{
get {return _onShelfCount;}
set {_onShelfCount = value;}
}
public string mem{
get {return _mem;}
set {_mem = value;}
}
2023-09-04 22:41:19 +08:00
public int state{
get {return _state;}
set {_state = value;}
}
2023-05-23 16:13:17 +08:00
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
2023-09-04 22:41:19 +08:00
public enum fields{preInOrderNo,pur_order,orderType,purch_d_id,shipId,arriveCount,receiveCount,validCount,onShelfCount,mem,state,operater}
2023-05-23 16:13:17 +08:00
#endregion
}
#endregion
}