91 lines
2.0 KiB
C#
91 lines
2.0 KiB
C#
/// <summary>
|
|
///Data Object
|
|
///BASIC CLASS FOR TABLE t_wmsPlatePack
|
|
///By wm
|
|
///on 08/16/2023
|
|
/// </summary>
|
|
|
|
using System;
|
|
using System.Data;
|
|
using DeiNiu.Data.BaseObject;
|
|
|
|
namespace DeiNiu.wms.Data.Model
|
|
{
|
|
|
|
#region WmsPlatePack_base
|
|
/// <summary>
|
|
/// This object represents the properties and methods of a WmsPlatePack_base.
|
|
/// </summary>
|
|
[Serializable]
|
|
public class WmsPlatePack_base : BaseModel {
|
|
|
|
|
|
internal string _plateId = String.Empty,_OplateId= String.Empty;
|
|
internal string _subPlateId = String.Empty,_OsubPlateId= String.Empty;
|
|
internal int _Ooperater;
|
|
|
|
internal string _createtime = String.Empty,_Ocreatetime= String.Empty;
|
|
|
|
|
|
public WmsPlatePack_base () {
|
|
}
|
|
public WmsPlatePack_base (int id) {
|
|
_id=id;
|
|
getModel();
|
|
}
|
|
public WmsPlatePack_base(DataRow dr)
|
|
{
|
|
getModel(dr);
|
|
}
|
|
public WmsPlatePack_base(System.Data.SqlClient.SqlConnection _Conn)
|
|
: base(_Conn)
|
|
{
|
|
|
|
}
|
|
protected override void getImp()
|
|
{
|
|
model_imp = new WmsPlatePack_base_Imp();
|
|
}
|
|
#region Public Properties
|
|
public string plateId{
|
|
get {return _plateId;}
|
|
set {_plateId = value;}
|
|
}
|
|
|
|
public string subPlateId{
|
|
get {return _subPlateId;}
|
|
set {_subPlateId = 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,subPlateId,operater}
|
|
#endregion
|
|
|
|
|
|
}
|
|
#endregion
|
|
}
|