HttReportEntity.cs 6.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235
  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 Core.StlMes.Client.Mcp.Treatment.Entity
  8. {
  9. /// <summary>
  10. /// 数据库表HTT_REPORT所对应的实体类(生成工具:代码生成工具4.0 访问地址:http://172.16.2.128/tool/)
  11. /// 作者:tgcx-test 时间:2018-06-29
  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. /// 报表类型
  73. /// </summary>
  74. private string reportType = "";
  75. ///机器编号
  76. private string machineNo = "";
  77. [Description("机器编号")]
  78. public string MachineNo
  79. {
  80. get { return machineNo; }
  81. set { machineNo = value; }
  82. }
  83. /// <summary>
  84. /// 报表英文名字
  85. /// </summary>
  86. [Description("报表类型")]
  87. public string ReportType
  88. {
  89. get { return reportType; }
  90. set { reportType = value; }
  91. }
  92. /// <summary>
  93. /// 报表英文名字
  94. /// </summary>
  95. [Description("报表英文名字")]
  96. public string EnglishName
  97. {
  98. get { return englishName; }
  99. set { englishName = value; }
  100. }
  101. /// <summary>
  102. /// 产线代码
  103. /// </summary>
  104. [Description("产线代码")]
  105. public string PlineCode
  106. {
  107. get { return plineCode; }
  108. set { plineCode = value; }
  109. }
  110. /// <summary>
  111. /// 报表编号
  112. /// </summary>
  113. [Description("报表编号")]
  114. public string ReportNo
  115. {
  116. get { return reportNo; }
  117. set { reportNo = value; }
  118. }
  119. /// <summary>
  120. /// 新报表编号
  121. /// </summary>
  122. [Description("新报表编号")]
  123. public string ReportNoNew
  124. {
  125. get { return reportNoNew; }
  126. set { reportNoNew = value; }
  127. }
  128. /// <summary>
  129. /// 新报表编号生效时间
  130. /// </summary>
  131. [Description("新报表编号生效时间")]
  132. public string ReportNoTime
  133. {
  134. get { return reportNoTime; }
  135. set { reportNoTime = value; }
  136. }
  137. /// <summary>
  138. /// 报表名称
  139. /// </summary>
  140. [Description("报表名称")]
  141. public string ReportName
  142. {
  143. get { return reportName; }
  144. set { reportName = value; }
  145. }
  146. /// <summary>
  147. /// 操作人
  148. /// </summary>
  149. [Description("操作人")]
  150. public string ColUser
  151. {
  152. get { return colUser; }
  153. set { colUser = value; }
  154. }
  155. /// <summary>
  156. /// 操作时间
  157. /// </summary>
  158. [Description("操作时间")]
  159. public string ColTime
  160. {
  161. get { return colTime; }
  162. set { colTime = value; }
  163. }
  164. /// <summary>
  165. /// 备注
  166. /// </summary>
  167. [Description("备注")]
  168. public string Remark
  169. {
  170. get { return remark; }
  171. set { remark = value; }
  172. }
  173. /// <summary>
  174. /// 产生岗位
  175. /// </summary>
  176. [Description("产生岗位")]
  177. public string GenerateStation
  178. {
  179. get { return generateStation; }
  180. set { generateStation = value; }
  181. }
  182. /// <summary>
  183. /// 接收岗位
  184. /// </summary>
  185. [Description("接收岗位")]
  186. public string ReceivingStation
  187. {
  188. get { return receivingStation; }
  189. set { receivingStation = value; }
  190. }
  191. /// <summary>
  192. /// 保存岗位
  193. /// </summary>
  194. [Description("保存岗位")]
  195. public string SaveStation
  196. {
  197. get { return saveStation; }
  198. set { saveStation = value; }
  199. }
  200. /// <summary>
  201. /// 保存期限
  202. /// </summary>
  203. [Description("保存期限")]
  204. public string StorageLife
  205. {
  206. get { return storageLife; }
  207. set { storageLife = value; }
  208. }
  209. /// <summary>
  210. /// 媒介(纸质/电子版)
  211. /// </summary>
  212. [Description("媒介(纸质/电子版)")]
  213. public string Intermediary
  214. {
  215. get { return intermediary; }
  216. set { intermediary = value; }
  217. }
  218. }
  219. }