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_LINE所对应的实体类(生成工具:代码生成工具3.0) /// 作者:JK-KF-WUHJ 时间:2016-08-04 /// public class SlmPriceAddpriceLineEntity { /// /// 头ID /// private string priceaddId = ""; /// /// 加价ID /// private string priceaddLineId = ""; /// /// 分类 /// private string priceaddClassify = ""; /// /// 加价项目 /// private string priceaddItem = ""; /// /// 加价项值 /// private string priceaddItemvalue = ""; /// /// 加价 /// private decimal? priceaddPrice = null; /// /// 适用ID /// private string priceaddSuit = ""; /// /// 是否有效 /// private string validflag = ""; /// /// 创建人 /// private string createName = ""; /// /// 创建时间 /// private string createTime = ""; /// /// 更改人 /// private string updateName = ""; /// /// 更改时间 /// private string updateTime = ""; /// /// 步长 /// private string priceStep = ""; /// /// 头ID /// [Description("头ID")] [Nullable(true)] [DataLength(20)] public string PriceaddId { get { return priceaddId; } set { priceaddId = value; } } /// /// 加价ID /// [Description("加价ID")] [Nullable(true)] [DataLength(20)] public string PriceaddLineId { get { return priceaddLineId; } set { priceaddLineId = value; } } /// /// 分类 /// [Description("分类")] [Nullable(true)] [DataLength(50)] public string PriceaddClassify { get { return priceaddClassify; } set { priceaddClassify = value; } } /// /// 加价项目 /// [Description("加价项目")] [Nullable(true)] [DataLength(100)] public string PriceaddItem { get { return priceaddItem; } set { priceaddItem = value; } } /// /// 加价项值 /// [Description("加价项值")] [Nullable(true)] [DataLength(100)] public string PriceaddItemvalue { get { return priceaddItemvalue; } set { priceaddItemvalue = value; } } /// /// 加价 /// [Description("加价")] [Nullable(true)] [DataLength(8)] public decimal? PriceaddPrice { get { return priceaddPrice; } set { priceaddPrice = value; } } /// /// 适用ID /// [Description("适用ID")] [Nullable(true)] [DataLength(20)] public string PriceaddSuit { get { return priceaddSuit; } set { priceaddSuit = 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; } } /// /// 步长 /// [Description("步长")] [Nullable(true)] [DataLength(20)] public string PriceStep { get { return priceStep; } set { priceStep = value; } } } }