97 lines
2.0 KiB
C#
97 lines
2.0 KiB
C#
/// <summary>
|
|
///Data Object
|
|
///BASIC CLASS FOR TABLE t_SkuValue
|
|
///By wm
|
|
///on 08/04/2023
|
|
/// </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 {
|
|
|
|
|
|
internal int _skuId,_OskuId;
|
|
internal int _attID,_OattID;
|
|
internal string _value = String.Empty,_Ovalue= String.Empty;
|
|
internal int _Ooperater;
|
|
|
|
internal string _createtime = String.Empty,_Ocreatetime= String.Empty;
|
|
|
|
|
|
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
|
|
}
|