SlmPriceFactorEntity.cs 5.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207
  1. using Core.Mes.Client.Comm.Attribute;
  2. using System;
  3. using System.Collections.Generic;
  4. using System.ComponentModel;
  5. using System.Linq;
  6. using System.Text;
  7. namespace com.steering.pss.sale.price.entity
  8. {
  9. /// <summary>
  10. /// 数据库表SLM_PRICE_FACTOR所对应的实体类(生成工具:代码生成工具3.0)
  11. /// 作者:DESKTOP-DG6B81Q 时间:2015-12-24
  12. /// </summary>
  13. public class SlmPriceFactorEntity
  14. {
  15. /// <summary>
  16. /// 因素ID
  17. /// </summary>
  18. private string factorId = "";
  19. /// <summary>
  20. /// 因数名称
  21. /// </summary>
  22. private string factorName = "";
  23. /// <summary>
  24. /// 表名
  25. /// </summary>
  26. private string tableName = "";
  27. /// <summary>
  28. /// 字段KEY
  29. /// </summary>
  30. private string columnKey = "";
  31. /// <summary>
  32. /// 字段类型(D 数值,C 字符)
  33. /// </summary>
  34. private string columnType = "";
  35. /// <summary>
  36. /// SQL
  37. /// </summary>
  38. private string valSql = "";
  39. /// <summary>
  40. /// 版本类型(1、基价+扩展;2、优惠政策、3加减价项目)
  41. /// </summary>
  42. private string verType = "";
  43. /// <summary>
  44. /// 有效标志(1:有效,0:无效)
  45. /// </summary>
  46. private string validflag = "";
  47. /// <summary>
  48. /// 创建人
  49. /// </summary>
  50. private string createName = "";
  51. /// <summary>
  52. /// 创建时间
  53. /// </summary>
  54. private string createTime = "";
  55. /// <summary>
  56. /// 修改人
  57. /// </summary>
  58. private string updateName = "";
  59. /// <summary>
  60. /// 修改时间
  61. /// </summary>
  62. private string updateTime = "";
  63. /// <summary>
  64. /// 因素ID
  65. /// </summary>
  66. [Description("因素ID")]
  67. [Nullable(false)]
  68. [DataLength(20)]
  69. public string FactorId
  70. {
  71. get { return factorId; }
  72. set { factorId = value; }
  73. }
  74. /// <summary>
  75. /// 因数名称
  76. /// </summary>
  77. [Description("因数名称")]
  78. [Nullable(true)]
  79. [DataLength(20)]
  80. public string FactorName
  81. {
  82. get { return factorName; }
  83. set { factorName = value; }
  84. }
  85. /// <summary>
  86. /// 表名
  87. /// </summary>
  88. [Description("表名")]
  89. [Nullable(true)]
  90. [DataLength(20)]
  91. public string TableName
  92. {
  93. get { return tableName; }
  94. set { tableName = value; }
  95. }
  96. /// <summary>
  97. /// 字段KEY
  98. /// </summary>
  99. [Description("字段KEY")]
  100. [Nullable(true)]
  101. [DataLength(20)]
  102. public string ColumnKey
  103. {
  104. get { return columnKey; }
  105. set { columnKey = value; }
  106. }
  107. /// <summary>
  108. /// 字段类型(D 数值,C 字符)
  109. /// </summary>
  110. [Description("字段类型")]
  111. [Nullable(true)]
  112. [DataLength(1)]
  113. public string ColumnType
  114. {
  115. get { return columnType; }
  116. set { columnType = value; }
  117. }
  118. /// <summary>
  119. /// SQL
  120. /// </summary>
  121. [Description("SQL")]
  122. [Nullable(true)]
  123. [DataLength(200)]
  124. public string ValSql
  125. {
  126. get { return valSql; }
  127. set { valSql = value; }
  128. }
  129. /// <summary>
  130. /// 版本类型(1、基价+扩展;2、优惠政策、3加减价项目)
  131. /// </summary>
  132. [Description("版本类型")]
  133. [Nullable(true)]
  134. [DataLength(20)]
  135. public string VerType
  136. {
  137. get { return verType; }
  138. set { verType = value; }
  139. }
  140. /// <summary>
  141. /// 有效标志(1:有效,0:无效)
  142. /// </summary>
  143. [Description("有效标志")]
  144. [Nullable(true)]
  145. [DataLength(1)]
  146. public string Validflag
  147. {
  148. get { return validflag; }
  149. set { validflag = value; }
  150. }
  151. /// <summary>
  152. /// 创建人
  153. /// </summary>
  154. [Description("创建人")]
  155. [Nullable(true)]
  156. [DataLength(20)]
  157. public string CreateName
  158. {
  159. get { return createName; }
  160. set { createName = value; }
  161. }
  162. /// <summary>
  163. /// 创建时间
  164. /// </summary>
  165. [Description("创建时间")]
  166. [Nullable(true)]
  167. public string CreateTime
  168. {
  169. get { return createTime; }
  170. set { createTime = value; }
  171. }
  172. /// <summary>
  173. /// 修改人
  174. /// </summary>
  175. [Description("修改人")]
  176. [Nullable(true)]
  177. [DataLength(20)]
  178. public string UpdateName
  179. {
  180. get { return updateName; }
  181. set { updateName = value; }
  182. }
  183. /// <summary>
  184. /// 修改时间
  185. /// </summary>
  186. [Description("修改时间")]
  187. [Nullable(true)]
  188. public string UpdateTime
  189. {
  190. get { return updateTime; }
  191. set { updateTime = value; }
  192. }
  193. }
  194. }