///
///Data Object
///BASIC CLASS FOR TABLE t_wmsPlateStock_tmp
///By wm
///on 10/25/2023
///
using System;
using System.Data;
using DeiNiu.Data.BaseObject;
namespace DeiNiu.wms.Data.Model
{
#region WmsPlateStock_tmp_base
///
/// This object represents the properties and methods of a WmsPlateStock_tmp_base.
///
[Serializable]
public class WmsPlateStock_tmp_base : BaseModel {
internal string _plateId = String.Empty,_OplateId= String.Empty;
internal int _skuId,_OskuId;
internal string _skuCode = String.Empty,_OskuCode= String.Empty;
internal string _goodsId = String.Empty,_OgoodsId= String.Empty;
internal string _barcode = String.Empty,_Obarcode= String.Empty;
internal string _batch = String.Empty,_Obatch= String.Empty;
internal string _productDate = String.Empty,_OproductDate= String.Empty;
internal string _validDate = String.Empty,_OvalidDate= String.Empty;
internal decimal _count,_Ocount;
internal int _state,_Ostate;
internal int _recordId,_OrecordId;
internal int _recType,_OrecType;
internal string _jobNo = String.Empty,_OjobNo= String.Empty;
internal string _locationid = String.Empty,_Olocationid= String.Empty;
internal int _outPortId,_OoutPortId;
internal int _inPortId,_OinPortId;
internal int _lineId,_OlineId;
internal string _inPlate = String.Empty,_OinPlate= String.Empty;
internal string _customerId = String.Empty,_OcustomerId= String.Empty;
internal string _orderNo = String.Empty,_OorderNo= String.Empty;
internal string _description = String.Empty,_Odescription= String.Empty;
internal int _Ooperater;
internal string _createtime = String.Empty,_Ocreatetime= String.Empty;
public WmsPlateStock_tmp_base () {
}
public WmsPlateStock_tmp_base (int id) {
_id=id;
getModel();
}
public WmsPlateStock_tmp_base(DataRow dr)
{
getModel(dr);
}
public WmsPlateStock_tmp_base(System.Data.SqlClient.SqlConnection _Conn)
: base(_Conn)
{
}
protected override void getImp()
{
model_imp = new WmsPlateStock_tmp_base_Imp();
}
#region Public Properties
public string plateId{
get {return _plateId;}
set {_plateId = value;}
}
public int skuId{
get {return _skuId;}
set {_skuId = value;}
}
public string skuCode{
get {return _skuCode;}
set {_skuCode = value;}
}
public string goodsId{
get {return _goodsId;}
set {_goodsId = value;}
}
public string barcode{
get {return _barcode;}
set {_barcode = value;}
}
public string batch{
get {return _batch;}
set {_batch = 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 int state{
get {return _state;}
set {_state = value;}
}
public int recordId{
get {return _recordId;}
set {_recordId = value;}
}
public int recType{
get {return _recType;}
set {_recType = value;}
}
public string jobNo{
get {return _jobNo;}
set {_jobNo = value;}
}
public string locationid{
get {return _locationid;}
set {_locationid = value;}
}
public int outPortId{
get {return _outPortId;}
set {_outPortId = value;}
}
public int inPortId{
get {return _inPortId;}
set {_inPortId = value;}
}
public int lineId{
get {return _lineId;}
set {_lineId = value;}
}
public string inPlate{
get {return _inPlate;}
set {_inPlate = value;}
}
public string customerId{
get {return _customerId;}
set {_customerId = value;}
}
public string orderNo{
get {return _orderNo;}
set {_orderNo = 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{plateId,skuId,skuCode,goodsId,barcode,batch,productDate,validDate,count,state,recordId,recType,jobNo,locationid,outPortId,inPortId,lineId,inPlate,customerId,orderNo,description,operater}
#endregion
}
#endregion
}