HttReportEntity.cs 8.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304
  1. using System;
  2. using System.Collections.Generic;
  3. using System.ComponentModel;
  4. using System.Linq;
  5. using System.Text;
  6. using Core.Mes.Client.Comm.Attribute;
  7. namespace Core.StlMes.Client.Mcp.Control.Entity
  8. {
  9. /// <summary>
  10. /// 数据库表HTT_REPORT所对应的实体类(生成工具:代码生成工具3.0)
  11. /// 作者:朱少波 时间:2018-12-03
  12. /// </summary>
  13. public class HttReportEntity
  14. {
  15. /// <summary>
  16. /// 产线代码
  17. /// </summary>
  18. private string plineCode = "";
  19. /// <summary>
  20. /// 报表编号
  21. /// </summary>
  22. private string reportNo = "";
  23. /// <summary>
  24. /// 新报表编号
  25. /// </summary>
  26. private string reportNoNew = "";
  27. /// <summary>
  28. /// 新报表编号生效时间
  29. /// </summary>
  30. private string reportNoTime = "";
  31. /// <summary>
  32. /// 报表名称
  33. /// </summary>
  34. private string reportName = "";
  35. /// <summary>
  36. /// 操作人
  37. /// </summary>
  38. private string colUser = "";
  39. /// <summary>
  40. /// 操作时间
  41. /// </summary>
  42. private string colTime = "";
  43. /// <summary>
  44. /// 备注
  45. /// </summary>
  46. private string remark = "";
  47. /// <summary>
  48. /// 产生岗位
  49. /// </summary>
  50. private string generateStation = "";
  51. /// <summary>
  52. /// 接收岗位
  53. /// </summary>
  54. private string receivingStation = "";
  55. /// <summary>
  56. /// 保存岗位
  57. /// </summary>
  58. private string saveStation = "";
  59. /// <summary>
  60. /// 保存期限
  61. /// </summary>
  62. private string storageLife = "";
  63. /// <summary>
  64. /// 媒介(纸质/电子版)
  65. /// </summary>
  66. private string intermediary = "";
  67. /// <summary>
  68. /// 报表英文名字
  69. /// </summary>
  70. private string englishName = "";
  71. /// <summary>
  72. /// 报表类型(0:管体机探1:管端手探 2:半成品缴库单 3:热处理表检 4涡流 5拧接 6水压 7通径 8倒棱 )
  73. /// </summary>
  74. private string reportType = "";
  75. /// <summary>
  76. /// 机器编号
  77. /// </summary>
  78. private string machineNo = "";
  79. /// <summary>
  80. /// 说明
  81. /// </summary>
  82. private string instruction = "";
  83. /// <summary>
  84. /// 使用的报表模板_ 暂提供给通用探伤
  85. /// </summary>
  86. private string reportCpt = "";
  87. /// <summary>
  88. /// 产线代码
  89. /// </summary>
  90. [Description("产线代码")]
  91. [Nullable(false)]
  92. [DataLength(20)]
  93. public string PlineCode
  94. {
  95. get { return plineCode; }
  96. set { plineCode = value; }
  97. }
  98. /// <summary>
  99. /// 报表编号
  100. /// </summary>
  101. [Description("报表编号")]
  102. [Nullable(false)]
  103. [DataLength(40)]
  104. public string ReportNo
  105. {
  106. get { return reportNo; }
  107. set { reportNo = value; }
  108. }
  109. /// <summary>
  110. /// 新报表编号
  111. /// </summary>
  112. [Description("新报表编号")]
  113. [Nullable(false)]
  114. [DataLength(40)]
  115. public string ReportNoNew
  116. {
  117. get { return reportNoNew; }
  118. set { reportNoNew = value; }
  119. }
  120. /// <summary>
  121. /// 新报表编号生效时间
  122. /// </summary>
  123. [Description("新报表编号生效时间")]
  124. [Nullable(false)]
  125. [DataLength(20)]
  126. public string ReportNoTime
  127. {
  128. get { return reportNoTime; }
  129. set { reportNoTime = value; }
  130. }
  131. /// <summary>
  132. /// 报表名称
  133. /// </summary>
  134. [Description("报表名称")]
  135. [Nullable(false)]
  136. [DataLength(100)]
  137. public string ReportName
  138. {
  139. get { return reportName; }
  140. set { reportName = value; }
  141. }
  142. /// <summary>
  143. /// 操作人
  144. /// </summary>
  145. [Description("操作人")]
  146. [Nullable(true)]
  147. [DataLength(20)]
  148. public string ColUser
  149. {
  150. get { return colUser; }
  151. set { colUser = value; }
  152. }
  153. /// <summary>
  154. /// 操作时间
  155. /// </summary>
  156. [Description("操作时间")]
  157. [Nullable(true)]
  158. public string ColTime
  159. {
  160. get { return colTime; }
  161. set { colTime = value; }
  162. }
  163. /// <summary>
  164. /// 备注
  165. /// </summary>
  166. [Description("备注")]
  167. [Nullable(true)]
  168. [DataLength(100)]
  169. public string Remark
  170. {
  171. get { return remark; }
  172. set { remark = value; }
  173. }
  174. /// <summary>
  175. /// 产生岗位
  176. /// </summary>
  177. [Description("产生岗位")]
  178. [Nullable(true)]
  179. [DataLength(40)]
  180. public string GenerateStation
  181. {
  182. get { return generateStation; }
  183. set { generateStation = value; }
  184. }
  185. /// <summary>
  186. /// 接收岗位
  187. /// </summary>
  188. [Description("接收岗位")]
  189. [Nullable(true)]
  190. [DataLength(40)]
  191. public string ReceivingStation
  192. {
  193. get { return receivingStation; }
  194. set { receivingStation = value; }
  195. }
  196. /// <summary>
  197. /// 保存岗位
  198. /// </summary>
  199. [Description("保存岗位")]
  200. [Nullable(true)]
  201. [DataLength(40)]
  202. public string SaveStation
  203. {
  204. get { return saveStation; }
  205. set { saveStation = value; }
  206. }
  207. /// <summary>
  208. /// 保存期限
  209. /// </summary>
  210. [Description("保存期限")]
  211. [Nullable(true)]
  212. [DataLength(40)]
  213. public string StorageLife
  214. {
  215. get { return storageLife; }
  216. set { storageLife = value; }
  217. }
  218. /// <summary>
  219. /// 媒介(纸质/电子版)
  220. /// </summary>
  221. [Description("媒介(纸质/电子版)")]
  222. [Nullable(true)]
  223. [DataLength(40)]
  224. public string Intermediary
  225. {
  226. get { return intermediary; }
  227. set { intermediary = value; }
  228. }
  229. /// <summary>
  230. /// 报表英文名字
  231. /// </summary>
  232. [Description("报表英文名字")]
  233. [Nullable(true)]
  234. [DataLength(100)]
  235. public string EnglishName
  236. {
  237. get { return englishName; }
  238. set { englishName = value; }
  239. }
  240. /// <summary>
  241. /// 报表类型(0:管体机探1:管端手探 2:半成品缴库单 3:热处理表检 4涡流 5拧接 6水压 7通径 8倒棱 )
  242. /// </summary>
  243. [Description("报表类型(0:管体机探1:管端手探 2:半成品缴库单 3:热处理表检 4涡流 5拧接 6水压 7通径 8倒棱 )")]
  244. [Nullable(false)]
  245. [DataLength(2)]
  246. public string ReportType
  247. {
  248. get { return reportType; }
  249. set { reportType = value; }
  250. }
  251. /// <summary>
  252. /// 机器编号
  253. /// </summary>
  254. [Description("机器编号")]
  255. [Nullable(true)]
  256. [DataLength(20)]
  257. public string MachineNo
  258. {
  259. get { return machineNo; }
  260. set { machineNo = value; }
  261. }
  262. /// <summary>
  263. /// 说明
  264. /// </summary>
  265. [Description("说明")]
  266. [Nullable(true)]
  267. [DataLength(400)]
  268. public string Instruction
  269. {
  270. get { return instruction; }
  271. set { instruction = value; }
  272. }
  273. /// <summary>
  274. /// 使用的报表模板_ 暂提供给通用探伤
  275. /// </summary>
  276. [Description("使用的报表模板_ 暂提供给通用探伤")]
  277. [Nullable(true)]
  278. [DataLength(400)]
  279. public string ReportCpt
  280. {
  281. get { return reportCpt; }
  282. set { reportCpt = value; }
  283. }
  284. }
  285. }