ldj/Model/wms/data/basic/SkuValue_base.cs

97 lines
2.0 KiB
C#
Raw Permalink Normal View History

2023-05-23 16:13:17 +08:00
/// <summary>
///Data Object
///BASIC CLASS FOR TABLE t_SkuValue
///By wm
2023-09-04 22:41:19 +08:00
///on 08/04/2023
2023-05-23 16:13:17 +08:00
/// </summary>
using System;
using System.Data;
using DeiNiu.Data.BaseObject;
namespace DeiNiu.wms.Data.Model
{
#region SkuValue_base
/// <summary>
/// This object represents the properties and methods of a SkuValue_base.
/// </summary>
[Serializable]
public class SkuValue_base : BaseModel {
2023-09-04 22:41:19 +08:00
internal int _skuId,_OskuId;
internal int _attID,_OattID;
internal string _value = String.Empty,_Ovalue= String.Empty;
internal int _Ooperater;
2023-05-23 16:13:17 +08:00
2023-09-04 22:41:19 +08:00
internal string _createtime = String.Empty,_Ocreatetime= String.Empty;
2023-05-23 16:13:17 +08:00
public SkuValue_base () {
}
public SkuValue_base (int id) {
_id=id;
getModel();
}
public SkuValue_base(DataRow dr)
{
getModel(dr);
}
public SkuValue_base(System.Data.SqlClient.SqlConnection _Conn)
: base(_Conn)
{
}
protected override void getImp()
{
model_imp = new SkuValue_base_Imp();
}
#region Public Properties
public int skuId{
get {return _skuId;}
set {_skuId = value;}
}
public int attID{
get {return _attID;}
set {_attID = value;}
}
public string value{
get {return _value;}
set {_value = 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{skuId,attID,value,operater}
#endregion
}
#endregion
}