2023-05-23 16:13:17 +08:00
|
|
|
|
/// <summary>
|
|
|
|
|
///Data Object
|
|
|
|
|
///BASIC CLASS FOR TABLE t_wmsStockRecord
|
|
|
|
|
///By wm
|
2024-02-06 19:36:47 +08:00
|
|
|
|
///on 01/08/2024
|
2023-05-23 16:13:17 +08:00
|
|
|
|
/// </summary>
|
|
|
|
|
|
|
|
|
|
using System;
|
|
|
|
|
using System.Data;
|
|
|
|
|
using DeiNiu.Data.BaseObject;
|
|
|
|
|
|
|
|
|
|
namespace DeiNiu.wms.Data.Model
|
|
|
|
|
{
|
|
|
|
|
|
|
|
|
|
#region WmsStockRecord_base
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// This object represents the properties and methods of a WmsStockRecord_base.
|
|
|
|
|
/// </summary>
|
|
|
|
|
[Serializable]
|
|
|
|
|
public class WmsStockRecord_base : BaseModel {
|
|
|
|
|
|
|
|
|
|
|
2023-09-04 22:41:19 +08:00
|
|
|
|
internal string _id128 = String.Empty,_Oid128= String.Empty;
|
|
|
|
|
internal string _orderNo = String.Empty,_OorderNo= String.Empty;
|
|
|
|
|
internal int _orderDetailId,_OorderDetailId;
|
|
|
|
|
internal string _goodsId = String.Empty,_OgoodsId= String.Empty;
|
|
|
|
|
internal int _skuId,_OskuId;
|
|
|
|
|
internal string _skuCode = String.Empty,_OskuCode= String.Empty;
|
|
|
|
|
internal string _batch = String.Empty,_Obatch= String.Empty;
|
|
|
|
|
internal string _locationId = String.Empty,_OlocationId= String.Empty;
|
|
|
|
|
internal decimal _count,_Ocount;
|
|
|
|
|
internal decimal _count1,_Ocount1;
|
|
|
|
|
internal decimal _countIn,_OcountIn;
|
|
|
|
|
internal decimal _countOuting,_OcountOuting;
|
2024-02-06 19:36:47 +08:00
|
|
|
|
internal decimal _virCount,_OvirCount;
|
2023-09-04 22:41:19 +08:00
|
|
|
|
internal int _rectype,_Orectype;
|
|
|
|
|
internal string _validDate = String.Empty,_OvalidDate= String.Empty;
|
|
|
|
|
internal string _productDate = String.Empty,_OproductDate= String.Empty;
|
|
|
|
|
internal string _regeditCode = String.Empty,_OregeditCode= String.Empty;
|
|
|
|
|
internal string _description = String.Empty,_Odescription= String.Empty;
|
|
|
|
|
internal int _partion,_Opartion;
|
|
|
|
|
internal int _printcnt,_Oprintcnt;
|
|
|
|
|
internal int _Ooperater;
|
2023-05-23 16:13:17 +08:00
|
|
|
|
|
2023-09-04 22:41:19 +08:00
|
|
|
|
internal string _createtime = String.Empty,_Ocreatetime= String.Empty;
|
2023-05-23 16:13:17 +08:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
public WmsStockRecord_base () {
|
|
|
|
|
}
|
|
|
|
|
public WmsStockRecord_base (int id) {
|
|
|
|
|
_id=id;
|
|
|
|
|
getModel();
|
|
|
|
|
}
|
|
|
|
|
public WmsStockRecord_base(DataRow dr)
|
|
|
|
|
{
|
|
|
|
|
getModel(dr);
|
|
|
|
|
}
|
|
|
|
|
public WmsStockRecord_base(System.Data.SqlClient.SqlConnection _Conn)
|
|
|
|
|
: base(_Conn)
|
|
|
|
|
{
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
protected override void getImp()
|
|
|
|
|
{
|
|
|
|
|
model_imp = new WmsStockRecord_base_Imp();
|
|
|
|
|
}
|
|
|
|
|
#region Public Properties
|
|
|
|
|
public string id128{
|
|
|
|
|
get {return _id128;}
|
|
|
|
|
set {_id128 = value;}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public string orderNo{
|
|
|
|
|
get {return _orderNo;}
|
|
|
|
|
set {_orderNo = value;}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public int orderDetailId{
|
|
|
|
|
get {return _orderDetailId;}
|
|
|
|
|
set {_orderDetailId = value;}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public string goodsId{
|
|
|
|
|
get {return _goodsId;}
|
|
|
|
|
set {_goodsId = value;}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public int skuId{
|
|
|
|
|
get {return _skuId;}
|
|
|
|
|
set {_skuId = value;}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public string skuCode{
|
|
|
|
|
get {return _skuCode;}
|
|
|
|
|
set {_skuCode = value;}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public string batch{
|
|
|
|
|
get {return _batch;}
|
|
|
|
|
set {_batch = value;}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public string locationId{
|
|
|
|
|
get {return _locationId;}
|
|
|
|
|
set {_locationId = value;}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public decimal count{
|
|
|
|
|
get {return _count;}
|
|
|
|
|
set {_count = value;}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public decimal count1{
|
|
|
|
|
get {return _count1;}
|
|
|
|
|
set {_count1 = value;}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public decimal countIn{
|
|
|
|
|
get {return _countIn;}
|
|
|
|
|
set {_countIn = value;}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public decimal countOuting{
|
|
|
|
|
get {return _countOuting;}
|
|
|
|
|
set {_countOuting = value;}
|
|
|
|
|
}
|
|
|
|
|
|
2024-02-06 19:36:47 +08:00
|
|
|
|
public decimal virCount{
|
|
|
|
|
get {return _virCount;}
|
|
|
|
|
set {_virCount = value;}
|
|
|
|
|
}
|
|
|
|
|
|
2023-05-23 16:13:17 +08:00
|
|
|
|
public int rectype{
|
|
|
|
|
get {return _rectype;}
|
|
|
|
|
set {_rectype = value;}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public string validDate{
|
|
|
|
|
get {return _validDate;}
|
|
|
|
|
set {_validDate = value;}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public string productDate{
|
|
|
|
|
get {return _productDate;}
|
|
|
|
|
set {_productDate = value;}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public string regeditCode{
|
|
|
|
|
get {return _regeditCode;}
|
|
|
|
|
set {_regeditCode = value;}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public string description{
|
|
|
|
|
get {return _description;}
|
|
|
|
|
set {_description = value;}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public int partion{
|
|
|
|
|
get {return _partion;}
|
|
|
|
|
set {_partion = value;}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public int printcnt{
|
|
|
|
|
get {return _printcnt;}
|
|
|
|
|
set {_printcnt = 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
|
2024-02-06 19:36:47 +08:00
|
|
|
|
public enum fields{id128,orderNo,orderDetailId,goodsId,skuId,skuCode,batch,locationId,count,count1,countIn,countOuting,virCount,rectype,validDate,productDate,regeditCode,description,partion,printcnt,operater}
|
2023-05-23 16:13:17 +08:00
|
|
|
|
#endregion
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
#endregion
|
|
|
|
|
}
|