97 lines
2.1 KiB
C#
97 lines
2.1 KiB
C#
/// <summary>
|
|
///Data Object
|
|
///BASIC CLASS FOR TABLE t_tmsLineDetail
|
|
///By wm
|
|
///on 08/04/2023
|
|
/// </summary>
|
|
|
|
using System;
|
|
using System.Data;
|
|
using DeiNiu.Data.BaseObject;
|
|
|
|
namespace DeiNiu.wms.Data.Model
|
|
{
|
|
|
|
#region TmsLineDetail_base
|
|
/// <summary>
|
|
/// This object represents the properties and methods of a TmsLineDetail_base.
|
|
/// </summary>
|
|
[Serializable]
|
|
public class TmsLineDetail_base : BaseModel {
|
|
|
|
|
|
internal int _lineId,_OlineId;
|
|
internal string _custId = String.Empty,_OcustId= String.Empty;
|
|
internal int _lineOrder,_OlineOrder;
|
|
internal int _Ooperater;
|
|
|
|
internal string _createtime = String.Empty,_Ocreatetime= String.Empty;
|
|
|
|
|
|
public TmsLineDetail_base () {
|
|
}
|
|
public TmsLineDetail_base (int id) {
|
|
_id=id;
|
|
getModel();
|
|
}
|
|
public TmsLineDetail_base(DataRow dr)
|
|
{
|
|
getModel(dr);
|
|
}
|
|
public TmsLineDetail_base(System.Data.SqlClient.SqlConnection _Conn)
|
|
: base(_Conn)
|
|
{
|
|
|
|
}
|
|
protected override void getImp()
|
|
{
|
|
model_imp = new TmsLineDetail_base_Imp();
|
|
}
|
|
#region Public Properties
|
|
public int lineId{
|
|
get {return _lineId;}
|
|
set {_lineId = value;}
|
|
}
|
|
|
|
public string custId{
|
|
get {return _custId;}
|
|
set {_custId = value;}
|
|
}
|
|
|
|
public int lineOrder{
|
|
get {return _lineOrder;}
|
|
set {_lineOrder = 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{lineId,custId,lineOrder,operater}
|
|
#endregion
|
|
|
|
|
|
}
|
|
#endregion
|
|
}
|