157 lines
3.8 KiB
C#
157 lines
3.8 KiB
C#
/// <summary>
|
|
///Data Object
|
|
///BASIC CLASS FOR TABLE t_wmsStockMaintain
|
|
///By wm
|
|
///on 08/13/2018
|
|
/// </summary>
|
|
|
|
using System;
|
|
using System.Data;
|
|
using DeiNiu.Data.BaseObject;
|
|
|
|
namespace DeiNiu.wms.Data.Model
|
|
{
|
|
|
|
#region WmsStockMaintain_base
|
|
/// <summary>
|
|
/// This object represents the properties and methods of a WmsStockMaintain_base.
|
|
/// </summary>
|
|
[Serializable]
|
|
public class WmsStockMaintain_base : BaseModel {
|
|
|
|
|
|
internal string _goodsId = String.Empty;
|
|
internal int _skuId;
|
|
internal string _skuCode = String.Empty;
|
|
internal string _batch = String.Empty;
|
|
internal string _locationId = String.Empty;
|
|
internal string _productDate = String.Empty;
|
|
internal string _validDate = String.Empty;
|
|
internal decimal _count;
|
|
internal decimal _mcount;
|
|
internal decimal _issueCount;
|
|
internal int _issueType;
|
|
internal string _details = String.Empty;
|
|
internal string _description = String.Empty;
|
|
|
|
|
|
internal string _createtime = String.Empty;
|
|
|
|
|
|
public WmsStockMaintain_base () {
|
|
}
|
|
public WmsStockMaintain_base (int id) {
|
|
_id=id;
|
|
getModel();
|
|
}
|
|
public WmsStockMaintain_base(DataRow dr)
|
|
{
|
|
getModel(dr);
|
|
}
|
|
public WmsStockMaintain_base(System.Data.SqlClient.SqlConnection _Conn)
|
|
: base(_Conn)
|
|
{
|
|
|
|
}
|
|
protected override void getImp()
|
|
{
|
|
model_imp = new WmsStockMaintain_base_Imp();
|
|
}
|
|
#region Public Properties
|
|
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 string productDate{
|
|
get {return _productDate;}
|
|
set {_productDate = value;}
|
|
}
|
|
|
|
public string validDate{
|
|
get {return _validDate;}
|
|
set {_validDate = value;}
|
|
}
|
|
|
|
public decimal count{
|
|
get {return _count;}
|
|
set {_count = value;}
|
|
}
|
|
|
|
public decimal mcount{
|
|
get {return _mcount;}
|
|
set {_mcount = value;}
|
|
}
|
|
|
|
public decimal issueCount{
|
|
get {return _issueCount;}
|
|
set {_issueCount = value;}
|
|
}
|
|
|
|
public int issueType{
|
|
get {return _issueType;}
|
|
set {_issueType = value;}
|
|
}
|
|
|
|
public string details{
|
|
get {return _details;}
|
|
set {_details = 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{goodsId,skuId,skuCode,batch,locationId,productDate,validDate,count,mcount,issueCount,issueType,details,description,operater}
|
|
#endregion
|
|
|
|
|
|
}
|
|
#endregion
|
|
}
|