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所对应的实体类(生成工具:代码生成工具3.0) /// 作者:DESKTOP-DG6B81Q 时间:2015-12-24 /// public class SlmPriceFactorEntity { /// /// 因素ID /// private string factorId = ""; /// /// 因数名称 /// private string factorName = ""; /// /// 表名 /// private string tableName = ""; /// /// 字段KEY /// private string columnKey = ""; /// /// 字段类型(D 数值,C 字符) /// private string columnType = ""; /// /// SQL /// private string valSql = ""; /// /// 版本类型(1、基价+扩展;2、优惠政策、3加减价项目) /// private string verType = ""; /// /// 有效标志(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 FactorId { get { return factorId; } set { factorId = value; } } /// /// 因数名称 /// [Description("因数名称")] [Nullable(true)] [DataLength(20)] public string FactorName { get { return factorName; } set { factorName = value; } } /// /// 表名 /// [Description("表名")] [Nullable(true)] [DataLength(20)] public string TableName { get { return tableName; } set { tableName = value; } } /// /// 字段KEY /// [Description("字段KEY")] [Nullable(true)] [DataLength(20)] public string ColumnKey { get { return columnKey; } set { columnKey = value; } } /// /// 字段类型(D 数值,C 字符) /// [Description("字段类型")] [Nullable(true)] [DataLength(1)] public string ColumnType { get { return columnType; } set { columnType = value; } } /// /// SQL /// [Description("SQL")] [Nullable(true)] [DataLength(200)] public string ValSql { get { return valSql; } set { valSql = value; } } /// /// 版本类型(1、基价+扩展;2、优惠政策、3加减价项目) /// [Description("版本类型")] [Nullable(true)] [DataLength(20)] public string VerType { get { return verType; } set { verType = value; } } /// /// 有效标志(1:有效,0:无效) /// [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; } } } }