MilHotCheckEntity.cs 8.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using System.ComponentModel;
  6. namespace com.steering.mes.zgmil.entity
  7. {
  8. /// <summary>
  9. /// 数据库表MIL_HOT_CHECK所对应的实体类(生成工具:代码生成工具2.4)
  10. /// 作者:PC201409231755 时间:2015-10-27
  11. /// </summary>
  12. public class MilHotCheckEntity
  13. {
  14. /// <summary>
  15. /// 炉号
  16. /// </summary>
  17. private object judgeStoveNo;
  18. /// <summary>
  19. /// 标准
  20. /// </summary>
  21. private object standard;
  22. /// <summary>
  23. /// 品种
  24. /// </summary>
  25. private object kidn;
  26. /// <summary>
  27. /// 钢种
  28. /// </summary>
  29. private object steel;
  30. /// <summary>
  31. /// 钢级
  32. /// </summary>
  33. private object grade;
  34. /// <summary>
  35. /// 规格
  36. /// </summary>
  37. private object pipeSize;
  38. /// <summary>
  39. /// 编号
  40. /// </summary>
  41. private object seralNum;
  42. /// <summary>
  43. /// 班次
  44. /// </summary>
  45. private object colShift;
  46. /// <summary>
  47. /// 班组
  48. /// </summary>
  49. private object colGroup;
  50. /// <summary>
  51. /// 检验员
  52. /// </summary>
  53. private object inspector;
  54. /// <summary>
  55. /// 抽检时间
  56. /// </summary>
  57. private object checkDate;
  58. /// <summary>
  59. /// 备注
  60. /// </summary>
  61. private object remark;
  62. /// <summary>
  63. /// 产线代码
  64. /// </summary>
  65. private object plineCode;
  66. public object PlineCode
  67. {
  68. get { return plineCode; }
  69. set { plineCode = value; }
  70. }
  71. /// <summary>
  72. /// 实绩编号
  73. /// </summary>
  74. private object resultNo;
  75. public object ResultNo
  76. {
  77. get { return resultNo; }
  78. set { resultNo = value; }
  79. }
  80. public MilHotCheckEntity()
  81. {
  82. resultNo = "";
  83. plineCode = "";
  84. judgeStoveNo = "";
  85. standard = "";
  86. kidn = "";
  87. steel = "";
  88. grade = "";
  89. pipeSize = "";
  90. seralNum = "";
  91. colShift = "";
  92. colGroup = "";
  93. inspector = "";
  94. checkDate = "";
  95. remark = "";
  96. }
  97. public void Clear()
  98. {
  99. resultNo = "";
  100. plineCode = "";
  101. judgeStoveNo = "";
  102. standard = "";
  103. kidn = "";
  104. steel = "";
  105. grade = "";
  106. pipeSize = "";
  107. seralNum = "";
  108. colShift = "";
  109. colGroup = "";
  110. inspector = "";
  111. checkDate = "";
  112. remark = "";
  113. }
  114. /// <summary>
  115. /// 炉号
  116. /// </summary>
  117. [Description("炉号")]
  118. public object JudgeStoveNo
  119. {
  120. get { return judgeStoveNo; }
  121. set
  122. {
  123. if (value == null)
  124. {
  125. judgeStoveNo = DBNull.Value;
  126. }
  127. else
  128. {
  129. judgeStoveNo = value;
  130. }
  131. }
  132. }
  133. /// <summary>
  134. /// 标准
  135. /// </summary>
  136. [Description("标准")]
  137. public object Standard
  138. {
  139. get { return standard; }
  140. set
  141. {
  142. if (value == null)
  143. {
  144. standard = DBNull.Value;
  145. }
  146. else
  147. {
  148. standard = value;
  149. }
  150. }
  151. }
  152. /// <summary>
  153. /// 品种
  154. /// </summary>
  155. [Description("品种")]
  156. public object Kidn
  157. {
  158. get { return kidn; }
  159. set
  160. {
  161. if (value == null)
  162. {
  163. kidn = DBNull.Value;
  164. }
  165. else
  166. {
  167. kidn = value;
  168. }
  169. }
  170. }
  171. /// <summary>
  172. /// 钢种
  173. /// </summary>
  174. [Description("钢种")]
  175. public object Steel
  176. {
  177. get { return steel; }
  178. set
  179. {
  180. if (value == null)
  181. {
  182. steel = DBNull.Value;
  183. }
  184. else
  185. {
  186. steel = value;
  187. }
  188. }
  189. }
  190. /// <summary>
  191. /// 钢级
  192. /// </summary>
  193. [Description("钢级")]
  194. public object Grade
  195. {
  196. get { return grade; }
  197. set
  198. {
  199. if (value == null)
  200. {
  201. grade = DBNull.Value;
  202. }
  203. else
  204. {
  205. grade = value;
  206. }
  207. }
  208. }
  209. /// <summary>
  210. /// 规格
  211. /// </summary>
  212. [Description("规格")]
  213. public object PipeSize
  214. {
  215. get { return pipeSize; }
  216. set
  217. {
  218. if (value == null)
  219. {
  220. pipeSize = DBNull.Value;
  221. }
  222. else
  223. {
  224. pipeSize = value;
  225. }
  226. }
  227. }
  228. /// <summary>
  229. /// 编号
  230. /// </summary>
  231. [Description("编号")]
  232. public object SeralNum
  233. {
  234. get { return seralNum; }
  235. set
  236. {
  237. if (value == null)
  238. {
  239. seralNum = DBNull.Value;
  240. }
  241. else
  242. {
  243. seralNum = value;
  244. }
  245. }
  246. }
  247. /// <summary>
  248. /// 班次
  249. /// </summary>
  250. [Description("班次")]
  251. public object ColShift
  252. {
  253. get { return colShift; }
  254. set
  255. {
  256. if (value == null)
  257. {
  258. colShift = DBNull.Value;
  259. }
  260. else
  261. {
  262. colShift = value;
  263. }
  264. }
  265. }
  266. /// <summary>
  267. /// 班组
  268. /// </summary>
  269. [Description("班组")]
  270. public object ColGroup
  271. {
  272. get { return colGroup; }
  273. set
  274. {
  275. if (value == null)
  276. {
  277. colGroup = DBNull.Value;
  278. }
  279. else
  280. {
  281. colGroup = value;
  282. }
  283. }
  284. }
  285. /// <summary>
  286. /// 检验员
  287. /// </summary>
  288. [Description("检验员")]
  289. public object Inspector
  290. {
  291. get { return inspector; }
  292. set
  293. {
  294. if (value == null)
  295. {
  296. inspector = DBNull.Value;
  297. }
  298. else
  299. {
  300. inspector = value;
  301. }
  302. }
  303. }
  304. /// <summary>
  305. /// 抽检时间
  306. /// </summary>
  307. [Description("抽检时间")]
  308. public object CheckDate
  309. {
  310. get { return checkDate; }
  311. set
  312. {
  313. if (value == null)
  314. {
  315. checkDate = DBNull.Value;
  316. }
  317. else
  318. {
  319. checkDate = value;
  320. }
  321. }
  322. }
  323. /// <summary>
  324. /// 备注
  325. /// </summary>
  326. [Description("备注")]
  327. public object Remark
  328. {
  329. get { return remark; }
  330. set
  331. {
  332. if (value == null)
  333. {
  334. remark = DBNull.Value;
  335. }
  336. else
  337. {
  338. remark = value;
  339. }
  340. }
  341. }
  342. }
  343. }