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_CLASSIFY所对应的实体类(生成工具:代码生成工具3.0) /// 作者:JK-KF-WUHJ 时间:2016-05-11 /// public class SlmPriceBaseframeClassifyEntity { /// /// ID /// private string brId = ""; /// /// 框架ID /// private string frameId = ""; /// /// 因素范围ID /// private string factorclassifyId = ""; /// /// 因素范围名称 /// private string factorclassifyName = ""; /// /// 因素值 /// private string factorVal = ""; /// /// 下限符号 /// private string factorMinSign = ""; /// /// 下限值 /// private string factorMinVal = ""; /// /// 上限符号 /// private string factorMaxSign = ""; /// /// 上限值 /// private string factorMaxVal = ""; /// /// 有效标志 /// private string validflag = ""; /// /// 创建人 /// private string createName = ""; /// /// 创建时间 /// private string createTime = ""; /// /// 修改人 /// private string updateName = ""; /// /// 修改时间 /// private string updateTime = ""; /// /// ID /// [Description("ID")] [Nullable(true)] [DataLength(20)] public string BrId { get { return brId; } set { brId = 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 FactorclassifyId { get { return factorclassifyId; } set { factorclassifyId = value; } } /// /// 因素范围名称 /// [Description("因素范围名称")] [Nullable(true)] [DataLength(20)] public string FactorclassifyName { get { return factorclassifyName; } set { factorclassifyName = value; } } /// /// 因素值 /// [Description("因素值")] [Nullable(true)] [DataLength(20)] public string FactorVal { get { return factorVal; } set { factorVal = value; } } /// /// 下限符号 /// [Description("下限符号")] [Nullable(true)] [DataLength(2)] public string FactorMinSign { get { return factorMinSign; } set { factorMinSign = value; } } /// /// 下限值 /// [Description("下限值")] [Nullable(true)] [DataLength(20)] public string FactorMinVal { get { return factorMinVal; } set { factorMinVal = value; } } /// /// 上限符号 /// [Description("上限符号")] [Nullable(true)] [DataLength(2)] public string FactorMaxSign { get { return factorMaxSign; } set { factorMaxSign = value; } } /// /// 上限值 /// [Description("上限值")] [Nullable(true)] [DataLength(20)] public string FactorMaxVal { get { return factorMaxVal; } set { factorMaxVal = 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)] [DataLength(20)] 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)] [DataLength(20)] public string UpdateTime { get { return updateTime; } set { updateTime = value; } } } }