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所对应的实体类(生成工具:代码生成工具3.0) /// 作者:JK-KF-WUHJ 时间:2016-08-17 /// public class SlmPriceBasepriceEntity { /// /// 基价套头ID /// private string priceHeadId = ""; /// /// 基价版本ID /// private string priceVerId = ""; /// /// 版本描叙 /// private string priceVerM = ""; /// /// 基价序号 /// private decimal? priceVerSqe = null; /// /// 配置框架ID /// private string frameId = ""; /// /// 横向X 第一因素值 /// private string x1IdValue = ""; /// /// 横向X 第二因素值 /// private string x2IdValue = ""; /// /// 横向X 第三因素值 /// private string x3IdValue = ""; /// /// 横向X 第四因素值 /// private string x4IdValue = ""; /// /// 横向X 第五因素值 /// private string x5IdValue = ""; /// /// 横向X 第六因素值 /// private string x6IdValue = ""; /// /// 横向X 第七因素值 /// private string x7IdValue = ""; /// /// 横向X 第八因素值 /// private string x8IdValue = ""; /// /// 纵向Y第一因素值 /// private string y1IdValue = ""; /// /// 纵向Y 第二因素值 /// private string y2IdValue = ""; /// /// 价格 /// private decimal? priceNum = null; /// /// 有效标志(1:有效,0:无效) /// private string validflag = ""; /// /// 创建人 /// private string createName = ""; /// /// 创建时间 /// private string createTime = ""; /// /// 修改人 /// private string updateName = ""; /// /// 修改时间 /// private string updateTime = ""; /// /// 基价套头ID /// [Description("基价套头ID")] [Nullable(false)] [DataLength(20)] public string PriceHeadId { get { return priceHeadId; } set { priceHeadId = value; } } /// /// 基价版本ID /// [Description("基价版本ID")] [Nullable(false)] [DataLength(20)] public string PriceVerId { get { return priceVerId; } set { priceVerId = value; } } /// /// 版本描叙 /// [Description("版本描叙")] [Nullable(true)] [DataLength(100)] public string PriceVerM { get { return priceVerM; } set { priceVerM = value; } } /// /// 基价序号 /// [Description("基价序号")] [Nullable(false)] [DataLength(5)] public decimal? PriceVerSqe { get { return priceVerSqe; } set { priceVerSqe = value; } } /// /// 配置框架ID /// [Description("配置框架ID")] [Nullable(false)] [DataLength(20)] public string FrameId { get { return frameId; } set { frameId = value; } } /// /// 横向X 第一因素值 /// [Description("横向X 第一因素值")] [Nullable(true)] [DataLength(20)] public string X1IdValue { get { return x1IdValue; } set { x1IdValue = value; } } /// /// 横向X 第二因素值 /// [Description("横向X 第二因素值")] [Nullable(true)] [DataLength(20)] public string X2IdValue { get { return x2IdValue; } set { x2IdValue = value; } } /// /// 横向X 第三因素值 /// [Description("横向X 第三因素值")] [Nullable(true)] [DataLength(20)] public string X3IdValue { get { return x3IdValue; } set { x3IdValue = value; } } /// /// 横向X 第四因素值 /// [Description("横向X 第四因素值")] [Nullable(true)] [DataLength(20)] public string X4IdValue { get { return x4IdValue; } set { x4IdValue = value; } } /// /// 横向X 第五因素值 /// [Description("横向X 第五因素值")] [Nullable(true)] [DataLength(20)] public string X5IdValue { get { return x5IdValue; } set { x5IdValue = value; } } /// /// 横向X 第六因素值 /// [Description("横向X 第六因素值")] [Nullable(true)] [DataLength(20)] public string X6IdValue { get { return x6IdValue; } set { x6IdValue = value; } } /// /// 横向X 第七因素值 /// [Description("横向X 第七因素值")] [Nullable(true)] [DataLength(20)] public string X7IdValue { get { return x7IdValue; } set { x7IdValue = value; } } /// /// 横向X 第八因素值 /// [Description("横向X 第八因素值")] [Nullable(true)] [DataLength(20)] public string X8IdValue { get { return x8IdValue; } set { x8IdValue = value; } } /// /// 纵向Y第一因素值 /// [Description("纵向Y第一因素值")] [Nullable(true)] [DataLength(20)] public string Y1IdValue { get { return y1IdValue; } set { y1IdValue = value; } } /// /// 纵向Y 第二因素值 /// [Description("纵向Y 第二因素值")] [Nullable(true)] [DataLength(20)] public string Y2IdValue { get { return y2IdValue; } set { y2IdValue = value; } } /// /// 价格 /// [Description("价格")] [Nullable(true)] [DataLength(9)] public decimal? PriceNum { get { return priceNum; } set { priceNum = value; } } /// /// 有效标志(1:有效,0:无效) /// [Description("有效标志(1:有效,0:无效)")] [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; } } } }