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_BASEFRAME_SET所对应的实体类(生成工具:代码生成工具3.0) /// 作者:JK-KF-WUHJ 时间:2016-04-20 /// public class SlmPriceBaseframeSetEntity { /// /// 配置框架ID /// private string frameId = ""; /// /// 横向X 第一因素 /// private string x1FactorId = ""; /// /// 横向X 第二因素 /// private string x2FactorId = ""; /// /// 横向X 第三因素 /// private string x3FactorId = ""; /// /// 横向X 第四因素 /// private string x4FactorId = ""; /// /// 横向X 第五因素 /// private string x5FactorId = ""; /// /// 横向X 第六因素 /// private string x6FactorId = ""; /// /// 横向X 第七因素 /// private string x7FactorId = ""; /// /// 横向X 第八因素 /// private string x8FactorId = ""; /// /// 纵向Y第一因素 /// private string y1FactorId = ""; /// /// 纵向Y 第二因素 /// private string y2FactorId = ""; /// /// 有效标志(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 FrameId { get { return frameId; } set { frameId = value; } } /// /// 横向X 第一因素 /// [Description("横向X 第一因素")] [Nullable(true)] [DataLength(20)] public string X1FactorId { get { return x1FactorId; } set { x1FactorId = value; } } /// /// 横向X 第二因素 /// [Description("横向X 第二因素")] [Nullable(true)] [DataLength(20)] public string X2FactorId { get { return x2FactorId; } set { x2FactorId = value; } } /// /// 横向X 第三因素 /// [Description("横向X 第三因素")] [Nullable(true)] [DataLength(20)] public string X3FactorId { get { return x3FactorId; } set { x3FactorId = value; } } /// /// 横向X 第四因素 /// [Description("横向X 第四因素")] [Nullable(true)] [DataLength(20)] public string X4FactorId { get { return x4FactorId; } set { x4FactorId = value; } } /// /// 横向X 第五因素 /// [Description("横向X 第五因素")] [Nullable(true)] [DataLength(20)] public string X5FactorId { get { return x5FactorId; } set { x5FactorId = value; } } /// /// 横向X 第六因素 /// [Description("横向X 第六因素")] [Nullable(true)] [DataLength(20)] public string X6FactorId { get { return x6FactorId; } set { x6FactorId = value; } } /// /// 横向X 第七因素 /// [Description("横向X 第七因素")] [Nullable(true)] [DataLength(20)] public string X7FactorId { get { return x7FactorId; } set { x7FactorId = value; } } /// /// 横向X 第八因素 /// [Description("横向X 第八因素")] [Nullable(true)] [DataLength(20)] public string X8FactorId { get { return x8FactorId; } set { x8FactorId = value; } } /// /// 纵向Y第一因素 /// [Description("纵向Y第一因素")] [Nullable(true)] [DataLength(20)] public string Y1FactorId { get { return y1FactorId; } set { y1FactorId = value; } } /// /// 纵向Y 第二因素 /// [Description("纵向Y 第二因素")] [Nullable(true)] [DataLength(20)] public string Y2FactorId { get { return y2FactorId; } set { y2FactorId = 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; } } } }