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_SUIT所对应的实体类(生成工具:代码生成工具3.0) /// 作者:JK-KF-WUHJ 时间:2016-08-04 /// public class SlmPriceAddpriceSuitEntity { /// /// 适用ID /// private string priceaddSuitId = ""; /// /// 适用项目 /// private string priceaddSuitItem = ""; /// /// 适用值集合 /// private string priceaddSuitValues = ""; /// /// 是否有效 /// private string validflag = ""; /// /// 创建人 /// private string createName = ""; /// /// 创建时间 /// private string createTime = ""; /// /// 修改人 /// private string updateName = ""; /// /// 修改时间 /// private string updateTime = ""; /// /// 适用ID /// [Description("适用ID")] [Nullable(true)] [DataLength(20)] public string PriceaddSuitId { get { return priceaddSuitId; } set { priceaddSuitId = value; } } /// /// 适用项目 /// [Description("适用项目")] [Nullable(true)] [DataLength(50)] public string PriceaddSuitItem { get { return priceaddSuitItem; } set { priceaddSuitItem = value; } } /// /// 适用值集合 /// [Description("适用值集合")] [Nullable(true)] [DataLength(100)] public string PriceaddSuitValues { get { return priceaddSuitValues; } set { priceaddSuitValues = 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 CreateTime { get { return createTime; } set { createTime = 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; } } } }