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_FACTOR_CLASSIFY所对应的实体类(生成工具:代码生成工具3.0) /// 作者:JK-KF-WUHJ 时间:2016-04-13 /// public class SlmPriceFactorClassifyEntity { /// /// 范围ID /// private string classDId = ""; /// /// 范围名称 /// private string classDName = ""; /// /// 序号 /// private decimal? sortNo = null; /// /// 版本类型 /// private string verType = ""; /// /// 因素ID /// private string factorId = ""; /// /// 因数值 /// private string factorVal = ""; /// /// 下限符号 /// private string factorMinSign = ""; /// /// 最小值 /// private string factorMinVal = ""; /// /// 上限符号 /// private string factorMaxSign = ""; /// /// 最大值 /// private string factorMaxVal = ""; /// /// 附属因素 /// private string pertainFactorId = ""; /// /// 附属因素值 /// private string pertainVal = ""; /// /// 下限符号 /// private string pertainMinSign = ""; /// /// 最小值 /// private string pertainMinVal = ""; /// /// 上限符号 /// private string pertainMaxSign = ""; /// /// 最大值 /// private string pertainMaxVal = ""; /// /// 是否有效 /// private string validflag = ""; /// /// 创建人 /// private string createName = ""; /// /// 创建时间 /// private string createTime = ""; /// /// 修改人 /// private string updateName = ""; /// /// 修改时间 /// private string updateTime = ""; /// /// 范围ID /// [Description("范围ID")] [Nullable(false)] [DataLength(20)] public string ClassDId { get { return classDId; } set { classDId = value; } } /// /// 范围名称 /// [Description("范围名称")] [Nullable(true)] [DataLength(20)] public string ClassDName { get { return classDName; } set { classDName = value; } } /// /// 序号 /// [Description("序号")] [Nullable(true)] [DataLength(22)] public decimal? SortNo { get { return sortNo; } set { sortNo = value; } } /// /// 版本类型(1、基价2基价扩展;3、优惠政策、4加减价项目) /// [Description("版本类型")] [Nullable(true)] [DataLength(20)] public string VerType { get { return verType; } set { verType = value; } } /// /// 因素ID /// [Description("因素")] [Nullable(false)] [DataLength(20)] public string FactorId { get { return factorId; } set { factorId = value; } } ///// ///// 因数值 ///// //[Description("因数值")] //[Nullable(true)] //[DataLength(50)] //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(20)] //public string PertainFactorId //{ // get { return pertainFactorId; } // set { pertainFactorId = value; } //} ///// ///// 附属因素值 ///// //[Description("附属因素值")] //[Nullable(true)] //[DataLength(20)] //public string PertainVal //{ // get { return pertainVal; } // set { pertainVal = value; } //} ///// ///// 附属因素下限符号 ///// //[Description("下限符号")] //[Nullable(true)] //[DataLength(2)] //public string PertainMinSign //{ // get { return pertainMinSign; } // set { pertainMinSign = value; } //} ///// ///// 附属因素最小值 ///// //[Description("最小值")] //[Nullable(true)] //[DataLength(20)] //public string PertainMinVal //{ // get { return pertainMinVal; } // set { pertainMinVal = value; } //} ///// ///// 附属因素上限限符号 ///// //[Description("上限符号")] //[Nullable(true)] //[DataLength(2)] //public string PertainMaxSign //{ // get { return pertainMaxSign; } // set { pertainMaxSign = value; } //} ///// ///// 附属因素最大值 ///// //[Description("最大值")] //[Nullable(true)] //[DataLength(20)] //public string PertainMaxVal //{ // get { return pertainMaxVal; } // set { pertainMaxVal = 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; } } } }