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_BASESUIT所对应的实体类(生成工具:代码生成工具3.0) /// 作者:JK-KF-WUHJ 时间:2016-07-25 /// public class SlmPriceBasesuitEntity { /// /// 适用ID /// private string suitId = ""; /// /// 适用信息名称 /// private string suitName = ""; /// /// 表名 /// private string tableName = ""; /// /// 列名 /// private string columnKey = ""; /// /// 字段类型 /// private string columnType = ""; /// /// SQL语句 /// private string valSql = ""; /// /// 字段类型 /// private string verType = ""; /// /// 是否有效 /// private string validflag = ""; /// /// 创建人 /// private string createName = ""; /// /// 创建时间 /// private string createTime = ""; /// /// 修改人 /// private string updateName = ""; /// /// 修改时间 /// private string updateTime = ""; /// /// 显示列名 /// private string columnName = ""; /// /// 适用ID /// [Description("适用ID")] [Nullable(false)] [DataLength(20)] public string SuitId { get { return suitId; } set { suitId = value; } } /// /// 适用信息名称 /// [Description("适用信息名称")] [Nullable(true)] [DataLength(20)] public string SuitName { get { return suitName; } set { suitName = value; } } /// /// 表名 /// [Description("表名")] [Nullable(true)] [DataLength(50)] public string TableName { get { return tableName; } set { tableName = value; } } /// /// 列名 /// [Description("列名")] [Nullable(true)] [DataLength(20)] public string ColumnKey { get { return columnKey; } set { columnKey = value; } } /// /// 字段类型 /// [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; } } /// /// 字段类型 /// [Description("字段类型")] [Nullable(true)] [DataLength(20)] public string VerType { get { return verType; } set { verType = 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; } } /// /// 显示列名 /// [Description("显示列名")] [Nullable(true)] [DataLength(200)] public string ColumnName { get { return columnName; } set { columnName = value; } } } }