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