103 lines
2.3 KiB
C#
103 lines
2.3 KiB
C#
|
/// <summary>
|
|||
|
///Data Object
|
|||
|
///BASIC CLASS FOR TABLE t_workplanDetail
|
|||
|
///By wm
|
|||
|
///on 06/30/2017
|
|||
|
/// </summary>
|
|||
|
|
|||
|
using System;
|
|||
|
using System.Data;
|
|||
|
using DeiNiu.Data.BaseObject;
|
|||
|
|
|||
|
namespace DeiNiu.wms.Data.Model
|
|||
|
{
|
|||
|
|
|||
|
#region WorkplanDetail_base
|
|||
|
/// <summary>
|
|||
|
/// This object represents the properties and methods of a WorkplanDetail_base.
|
|||
|
/// </summary>
|
|||
|
[Serializable]
|
|||
|
public class WorkplanDetail_base : BaseModel {
|
|||
|
|
|||
|
|
|||
|
internal int _wpd_workplan;
|
|||
|
internal int _wpd_number;
|
|||
|
internal string _wpd_content = String.Empty;
|
|||
|
internal string _wpd_mem = String.Empty;
|
|||
|
|
|||
|
|
|||
|
internal string _create_time = String.Empty;
|
|||
|
|
|||
|
|
|||
|
public WorkplanDetail_base () {
|
|||
|
}
|
|||
|
public WorkplanDetail_base (int id) {
|
|||
|
_id=id;
|
|||
|
getModel();
|
|||
|
}
|
|||
|
public WorkplanDetail_base(DataRow dr)
|
|||
|
{
|
|||
|
getModel(dr);
|
|||
|
}
|
|||
|
public WorkplanDetail_base(System.Data.SqlClient.SqlConnection _Conn)
|
|||
|
: base(_Conn)
|
|||
|
{
|
|||
|
|
|||
|
}
|
|||
|
protected override void getImp()
|
|||
|
{
|
|||
|
model_imp = new WorkplanDetail_base_Imp();
|
|||
|
}
|
|||
|
#region Public Properties
|
|||
|
public int wpd_workplan{
|
|||
|
get {return _wpd_workplan;}
|
|||
|
set {_wpd_workplan = value;}
|
|||
|
}
|
|||
|
|
|||
|
public int wpd_number{
|
|||
|
get {return _wpd_number;}
|
|||
|
set {_wpd_number = value;}
|
|||
|
}
|
|||
|
|
|||
|
public string wpd_content{
|
|||
|
get {return _wpd_content;}
|
|||
|
set {_wpd_content = value;}
|
|||
|
}
|
|||
|
|
|||
|
public string wpd_mem{
|
|||
|
get {return _wpd_mem;}
|
|||
|
set {_wpd_mem = value;}
|
|||
|
}
|
|||
|
|
|||
|
public bool dr{
|
|||
|
get {return _dr;}
|
|||
|
|
|||
|
}
|
|||
|
|
|||
|
public int operater{
|
|||
|
get {return _operater;}
|
|||
|
set {_operater = value;}
|
|||
|
}
|
|||
|
|
|||
|
public string create_time{
|
|||
|
get {return _create_time;}
|
|||
|
set {_create_time = value;}
|
|||
|
}
|
|||
|
|
|||
|
public string lastmodified{
|
|||
|
get {return _lastmodified;}
|
|||
|
|
|||
|
}
|
|||
|
|
|||
|
|
|||
|
#endregion
|
|||
|
|
|||
|
#region fieldNames
|
|||
|
public enum fields{wpd_workplan,wpd_number,wpd_content,wpd_mem,operater}
|
|||
|
#endregion
|
|||
|
|
|||
|
|
|||
|
}
|
|||
|
#endregion
|
|||
|
}
|