using Core.Mes.Client.Comm.Attribute; using System; using System.Collections.Generic; using System.ComponentModel; using System.Linq; using System.Text; namespace com.steering.pss.sale.price.entity { /// /// 数据库表SLM_PRICE_ADDPRICE_HEAD所对应的实体类(生成工具:代码生成工具3.0) /// 作者:JK-KF-WUHJ 时间:2016-06-27 /// public class SlmPriceAddpriceHeadEntity { /// /// ID /// private string priceaddId = ""; /// /// 头描述 /// private string priceaddDesc = ""; /// /// 类型(加价、优惠) /// private string priceaddType = ""; /// /// 有效期起 /// private string validdateBegin = ""; /// /// 有效期止 /// private string validdateEnd = ""; /// /// 是否有效 /// private string validflag = ""; /// /// 创建人 /// private string createName = ""; /// /// 创建时间 /// private string caeateTime = ""; /// /// 修改人 /// private string updateName = ""; /// /// 修改时间 /// private string updateTime = ""; /// /// ID /// [Description("ID")] [Nullable(true)] [DataLength(20)] public string PriceaddId { get { return priceaddId; } set { priceaddId = value; } } /// /// 头描述 /// [Description("头描述")] [Nullable(true)] [DataLength(100)] public string PriceaddDesc { get { return priceaddDesc; } set { priceaddDesc = value; } } /// /// 类型(加价、优惠) /// [Description("类型(加价、优惠)")] [Nullable(true)] [DataLength(20)] public string PriceaddType { get { return priceaddType; } set { priceaddType = value; } } /// /// 有效期起 /// [Description("有效期起")] [Nullable(true)] public string ValiddateBegin { get { return validdateBegin; } set { validdateBegin = value; } } /// /// 有效期止 /// [Description("有效期止")] [Nullable(true)] public string ValiddateEnd { get { return validdateEnd; } set { validdateEnd = value; } } /// /// 是否有效 /// [Description("是否有效")] [Nullable(true)] [DataLength(1)] public string Validflag { get { return validflag; } set { validflag = value; } } /// /// 创建人 /// [Description("创建人")] [Nullable(true)] [DataLength(20)] public string CreateName { get { return createName; } set { createName = value; } } /// /// 创建时间 /// [Description("创建时间")] [Nullable(true)] public string CaeateTime { get { return caeateTime; } set { caeateTime = value; } } /// /// 修改人 /// [Description("修改人")] [Nullable(true)] [DataLength(20)] public string UpdateName { get { return updateName; } set { updateName = value; } } /// /// 修改时间 /// [Description("修改时间")] [Nullable(true)] public string UpdateTime { get { return updateTime; } set { updateTime = value; } } } }