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_BASEPRICE_EXP所对应的实体类(生成工具:代码生成工具3.0) /// 作者:JK-KF-WUHJ 时间:2016-06-20 /// public class SlmPriceBasepriceExpEntity { /// /// 基价扩展ID /// private string priceExpId = ""; /// /// 基价扩展描述 /// private string priceExpName = ""; /// /// 框架ID /// private string frameId = ""; /// /// 因素一ID /// private string factor1Id = ""; /// /// 因素一价格 /// private decimal? factor1Price = null; /// /// 因素二ID /// private string factor2Id = ""; /// /// 因素二价格 /// private decimal? factor2Price = null; /// /// 因素三ID /// private string factor3Id = ""; /// /// 因素三价格 /// private decimal? factor3Price = null; /// /// 因素四ID /// private string factor4Id = ""; /// /// 因素四价格 /// private decimal? factor4Price = null; /// /// 因素五ID /// private string factor5Id = ""; /// /// 因素五价格 /// private decimal? factor5Price = null; /// /// 因素六ID /// private string factor6Id = ""; /// /// 因素六价格 /// private decimal? factor6Price = null; /// /// 因素七ID /// private string factor7Id = ""; /// /// 因素七价格 /// private decimal? factor7Price = null; /// /// 因素八ID /// private string factor8Id = ""; /// /// 因素八价格 /// private decimal? factor8Price = null; /// /// 基价套头ID /// private string priceHeadId = ""; /// /// 是否有效 /// private string validflag = ""; /// /// 创建人 /// private string createName = ""; /// /// 创建时间 /// private string createTime = ""; /// /// 修改人 /// private string updateName = ""; /// /// 修改时间 /// private string updateTime = ""; /// /// 基价扩展ID /// [Description("基价扩展ID")] [Nullable(true)] [DataLength(20)] public string PriceExpId { get { return priceExpId; } set { priceExpId = value; } } /// /// 基价扩展描述 /// [Description("基价扩展描述")] [Nullable(true)] [DataLength(20)] public string PriceExpName { get { return priceExpName; } set { priceExpName = value; } } /// /// 框架ID /// [Description("框架ID")] [Nullable(true)] [DataLength(20)] public string FrameId { get { return frameId; } set { frameId = value; } } /// /// 因素一ID /// [Description("因素一ID")] [Nullable(true)] [DataLength(20)] public string Factor1Id { get { return factor1Id; } set { factor1Id = value; } } /// /// 因素一价格 /// [Description("因素一价格")] [Nullable(true)] [DataLength(8)] public decimal? Factor1Price { get { return factor1Price; } set { factor1Price = value; } } /// /// 因素二ID /// [Description("因素二ID")] [Nullable(true)] [DataLength(20)] public string Factor2Id { get { return factor2Id; } set { factor2Id = value; } } /// /// 因素二价格 /// [Description("因素二价格")] [Nullable(true)] [DataLength(8)] public decimal? Factor2Price { get { return factor2Price; } set { factor2Price = value; } } /// /// 因素三ID /// [Description("因素三ID")] [Nullable(true)] [DataLength(20)] public string Factor3Id { get { return factor3Id; } set { factor3Id = value; } } /// /// 因素三价格 /// [Description("因素三价格")] [Nullable(true)] [DataLength(8)] public decimal? Factor3Price { get { return factor3Price; } set { factor3Price = value; } } /// /// 因素四ID /// [Description("因素四ID")] [Nullable(true)] [DataLength(20)] public string Factor4Id { get { return factor4Id; } set { factor4Id = value; } } /// /// 因素四价格 /// [Description("因素四价格")] [Nullable(true)] [DataLength(8)] public decimal? Factor4Price { get { return factor4Price; } set { factor4Price = value; } } /// /// 因素五ID /// [Description("因素五ID")] [Nullable(true)] [DataLength(20)] public string Factor5Id { get { return factor5Id; } set { factor5Id = value; } } /// /// 因素五价格 /// [Description("因素五价格")] [Nullable(true)] [DataLength(8)] public decimal? Factor5Price { get { return factor5Price; } set { factor5Price = value; } } /// /// 因素六ID /// [Description("因素六ID")] [Nullable(true)] [DataLength(20)] public string Factor6Id { get { return factor6Id; } set { factor6Id = value; } } /// /// 因素六价格 /// [Description("因素六价格")] [Nullable(true)] [DataLength(8)] public decimal? Factor6Price { get { return factor6Price; } set { factor6Price = value; } } /// /// 因素七ID /// [Description("因素七ID")] [Nullable(true)] [DataLength(20)] public string Factor7Id { get { return factor7Id; } set { factor7Id = value; } } /// /// 因素七价格 /// [Description("因素七价格")] [Nullable(true)] [DataLength(8)] public decimal? Factor7Price { get { return factor7Price; } set { factor7Price = value; } } /// /// 因素八ID /// [Description("因素八ID")] [Nullable(true)] [DataLength(20)] public string Factor8Id { get { return factor8Id; } set { factor8Id = value; } } /// /// 因素八价格 /// [Description("因素八价格")] [Nullable(true)] [DataLength(8)] public decimal? Factor8Price { get { return factor8Price; } set { factor8Price = value; } } /// /// 基价套头ID /// [Description("基价套头ID")] [Nullable(true)] [DataLength(20)] public string PriceHeadId { get { return priceHeadId; } set { priceHeadId = 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; } } } }