SlmPriceBasesuitEntity.cs 5.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223
  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_BASESUIT所对应的实体类(生成工具:代码生成工具3.0)
  11. /// 作者:JK-KF-WUHJ 时间:2016-07-25
  12. /// </summary>
  13. public class SlmPriceBasesuitEntity
  14. {
  15. /// <summary>
  16. /// 适用ID
  17. /// </summary>
  18. private string suitId = "";
  19. /// <summary>
  20. /// 适用信息名称
  21. /// </summary>
  22. private string suitName = "";
  23. /// <summary>
  24. /// 表名
  25. /// </summary>
  26. private string tableName = "";
  27. /// <summary>
  28. /// 列名
  29. /// </summary>
  30. private string columnKey = "";
  31. /// <summary>
  32. /// 字段类型
  33. /// </summary>
  34. private string columnType = "";
  35. /// <summary>
  36. /// SQL语句
  37. /// </summary>
  38. private string valSql = "";
  39. /// <summary>
  40. /// 字段类型
  41. /// </summary>
  42. private string verType = "";
  43. /// <summary>
  44. /// 是否有效
  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. /// 显示列名
  65. /// </summary>
  66. private string columnName = "";
  67. /// <summary>
  68. /// 适用ID
  69. /// </summary>
  70. [Description("适用ID")]
  71. [Nullable(false)]
  72. [DataLength(20)]
  73. public string SuitId
  74. {
  75. get { return suitId; }
  76. set { suitId = value; }
  77. }
  78. /// <summary>
  79. /// 适用信息名称
  80. /// </summary>
  81. [Description("适用信息名称")]
  82. [Nullable(true)]
  83. [DataLength(20)]
  84. public string SuitName
  85. {
  86. get { return suitName; }
  87. set { suitName = value; }
  88. }
  89. /// <summary>
  90. /// 表名
  91. /// </summary>
  92. [Description("表名")]
  93. [Nullable(true)]
  94. [DataLength(50)]
  95. public string TableName
  96. {
  97. get { return tableName; }
  98. set { tableName = value; }
  99. }
  100. /// <summary>
  101. /// 列名
  102. /// </summary>
  103. [Description("列名")]
  104. [Nullable(true)]
  105. [DataLength(20)]
  106. public string ColumnKey
  107. {
  108. get { return columnKey; }
  109. set { columnKey = value; }
  110. }
  111. /// <summary>
  112. /// 字段类型
  113. /// </summary>
  114. [Description("字段类型")]
  115. [Nullable(true)]
  116. [DataLength(1)]
  117. public string ColumnType
  118. {
  119. get { return columnType; }
  120. set { columnType = value; }
  121. }
  122. /// <summary>
  123. /// SQL语句
  124. /// </summary>
  125. [Description("SQL语句")]
  126. [Nullable(true)]
  127. [DataLength(200)]
  128. public string ValSql
  129. {
  130. get { return valSql; }
  131. set { valSql = value; }
  132. }
  133. /// <summary>
  134. /// 字段类型
  135. /// </summary>
  136. [Description("字段类型")]
  137. [Nullable(true)]
  138. [DataLength(20)]
  139. public string VerType
  140. {
  141. get { return verType; }
  142. set { verType = value; }
  143. }
  144. /// <summary>
  145. /// 是否有效
  146. /// </summary>
  147. [Description("是否有效")]
  148. [Nullable(true)]
  149. [DataLength(1)]
  150. public string Validflag
  151. {
  152. get { return validflag; }
  153. set { validflag = value; }
  154. }
  155. /// <summary>
  156. /// 创建人
  157. /// </summary>
  158. [Description("创建人")]
  159. [Nullable(true)]
  160. [DataLength(20)]
  161. public string CreateName
  162. {
  163. get { return createName; }
  164. set { createName = value; }
  165. }
  166. /// <summary>
  167. /// 创建时间
  168. /// </summary>
  169. [Description("创建时间")]
  170. [Nullable(true)]
  171. public string CreateTime
  172. {
  173. get { return createTime; }
  174. set { createTime = value; }
  175. }
  176. /// <summary>
  177. /// 修改人
  178. /// </summary>
  179. [Description("修改人")]
  180. [Nullable(true)]
  181. [DataLength(20)]
  182. public string UpdateName
  183. {
  184. get { return updateName; }
  185. set { updateName = value; }
  186. }
  187. /// <summary>
  188. /// 修改时间
  189. /// </summary>
  190. [Description("修改时间")]
  191. [Nullable(true)]
  192. public string UpdateTime
  193. {
  194. get { return updateTime; }
  195. set { updateTime = value; }
  196. }
  197. /// <summary>
  198. /// 显示列名
  199. /// </summary>
  200. [Description("显示列名")]
  201. [Nullable(true)]
  202. [DataLength(200)]
  203. public string ColumnName
  204. {
  205. get { return columnName; }
  206. set { columnName = value; }
  207. }
  208. }
  209. }