QcmZgJudgeInputRecordEntity.cs 9.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368
  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.ZGMil.Entity
  8. {
  9. /// <summary>
  10. /// 数据库表QCM_ZG_JUDGE_INPUT_RECORD所对应的实体类(生成工具:代码生成工具3.0)
  11. /// 作者:PC-20160918TFRG 时间:2020-10-16
  12. /// </summary>
  13. public class QcmZgJudgeInputRecordEntity
  14. {
  15. /// <summary>
  16. /// 申请判定单号
  17. /// </summary>
  18. private string jugdeApplyCode = "";
  19. /// <summary>
  20. /// 炉号
  21. /// </summary>
  22. private string judgeStoveNo = "";
  23. /// <summary>
  24. /// 批号
  25. /// </summary>
  26. private string batchNo = "";
  27. /// <summary>
  28. /// 组号
  29. /// </summary>
  30. private string batchGroudNo = "";
  31. /// <summary>
  32. /// 工序代码(A\B\C\D.....)
  33. /// </summary>
  34. private string processCode = "";
  35. /// <summary>
  36. /// 产线代码
  37. /// </summary>
  38. private string plineCode = "";
  39. /// <summary>
  40. /// 支数
  41. /// </summary>
  42. private decimal? actCount = null;
  43. /// <summary>
  44. /// 实重
  45. /// </summary>
  46. private decimal? actWeight = null;
  47. /// <summary>
  48. /// 理论重量
  49. /// </summary>
  50. private decimal? actTheoryWeight = null;
  51. /// <summary>
  52. /// 原投料量
  53. /// </summary>
  54. private decimal? inputWeight = null;
  55. /// <summary>
  56. /// 原投料支数(单倍坯)
  57. /// </summary>
  58. private decimal? inputCount = null;
  59. /// <summary>
  60. /// 调整后投料量
  61. /// </summary>
  62. private decimal? inputWeight2 = null;
  63. /// <summary>
  64. /// 调整后料支数(单倍坯)
  65. /// </summary>
  66. private decimal? inputCount2 = null;
  67. /// <summary>
  68. /// 结转年月
  69. /// </summary>
  70. private string balYearMonth = "";
  71. /// <summary>
  72. /// 申请判定顺序号
  73. /// </summary>
  74. private string jugdeApplySequeno = "";
  75. /// <summary>
  76. /// 操作人
  77. /// </summary>
  78. private string colName = "";
  79. /// <summary>
  80. /// 操作时间
  81. /// </summary>
  82. private string colTime = "";
  83. /// <summary>
  84. /// 生产产线名称
  85. /// </summary>
  86. private string plineName = "";
  87. /// <summary>
  88. /// 质量分组号(同申判单号、炉、批、组的前期下,当表面、公差、成分、理化、控伤、水压、加工七大项的组合值不一样时,组号必须分开)
  89. /// </summary>
  90. private decimal? qualityGroup = null;
  91. /// <summary>
  92. /// 材料去向代码
  93. /// </summary>
  94. private string matGowhereCode = "";
  95. /// <summary>
  96. /// 材料去向
  97. /// </summary>
  98. private string matGowhereName = "";
  99. /// <summary>
  100. /// 主键
  101. /// </summary>
  102. private string colId = "";
  103. /// <summary>
  104. /// 申请判定单号
  105. /// </summary>
  106. [Description("申请判定单号")]
  107. [Nullable(false)]
  108. [DataLength(40)]
  109. public string JugdeApplyCode
  110. {
  111. get { return jugdeApplyCode; }
  112. set { jugdeApplyCode = value; }
  113. }
  114. /// <summary>
  115. /// 炉号
  116. /// </summary>
  117. [Description("炉号")]
  118. [Nullable(false)]
  119. [DataLength(6)]
  120. public string JudgeStoveNo
  121. {
  122. get { return judgeStoveNo; }
  123. set { judgeStoveNo = value; }
  124. }
  125. /// <summary>
  126. /// 批号
  127. /// </summary>
  128. [Description("批号")]
  129. [Nullable(false)]
  130. [DataLength(20)]
  131. public string BatchNo
  132. {
  133. get { return batchNo; }
  134. set { batchNo = value; }
  135. }
  136. /// <summary>
  137. /// 组号
  138. /// </summary>
  139. [Description("组号")]
  140. [Nullable(false)]
  141. [DataLength(3)]
  142. public string BatchGroudNo
  143. {
  144. get { return batchGroudNo; }
  145. set { batchGroudNo = value; }
  146. }
  147. /// <summary>
  148. /// 工序代码(A\B\C\D.....)
  149. /// </summary>
  150. [Description("工序代码(A\\B\\C\\D.....)")]
  151. [Nullable(true)]
  152. [DataLength(1)]
  153. public string ProcessCode
  154. {
  155. get { return processCode; }
  156. set { processCode = value; }
  157. }
  158. /// <summary>
  159. /// 产线代码
  160. /// </summary>
  161. [Description("产线代码")]
  162. [Nullable(true)]
  163. [DataLength(20)]
  164. public string PlineCode
  165. {
  166. get { return plineCode; }
  167. set { plineCode = value; }
  168. }
  169. /// <summary>
  170. /// 支数
  171. /// </summary>
  172. [Description("支数")]
  173. [Nullable(true)]
  174. [DataLength(5)]
  175. public decimal? ActCount
  176. {
  177. get { return actCount; }
  178. set { actCount = value; }
  179. }
  180. /// <summary>
  181. /// 实重
  182. /// </summary>
  183. [Description("实重")]
  184. [Nullable(true)]
  185. [DataLength(12)]
  186. public decimal? ActWeight
  187. {
  188. get { return actWeight; }
  189. set { actWeight = value; }
  190. }
  191. /// <summary>
  192. /// 理论重量
  193. /// </summary>
  194. [Description("理论重量")]
  195. [Nullable(true)]
  196. [DataLength(12)]
  197. public decimal? ActTheoryWeight
  198. {
  199. get { return actTheoryWeight; }
  200. set { actTheoryWeight = value; }
  201. }
  202. /// <summary>
  203. /// 原投料量
  204. /// </summary>
  205. [Description("原投料量")]
  206. [Nullable(true)]
  207. [DataLength(9)]
  208. public decimal? InputWeight
  209. {
  210. get { return inputWeight; }
  211. set { inputWeight = value; }
  212. }
  213. /// <summary>
  214. /// 原投料支数(单倍坯)
  215. /// </summary>
  216. [Description("原投料支数(单倍坯)")]
  217. [Nullable(true)]
  218. [DataLength(5)]
  219. public decimal? InputCount
  220. {
  221. get { return inputCount; }
  222. set { inputCount = value; }
  223. }
  224. /// <summary>
  225. /// 调整后投料量
  226. /// </summary>
  227. [Description("调整后投料量")]
  228. [Nullable(true)]
  229. [DataLength(9)]
  230. public decimal? InputWeight2
  231. {
  232. get { return inputWeight2; }
  233. set { inputWeight2 = value; }
  234. }
  235. /// <summary>
  236. /// 调整后料支数(单倍坯)
  237. /// </summary>
  238. [Description("调整后投料支数(单倍坯)")]
  239. [Nullable(true)]
  240. [DataLength(5)]
  241. public decimal? InputCount2
  242. {
  243. get { return inputCount2; }
  244. set { inputCount2 = value; }
  245. }
  246. /// <summary>
  247. /// 结转年月
  248. /// </summary>
  249. [Description("结转年月")]
  250. [Nullable(true)]
  251. [DataLength(6)]
  252. public string BalYearMonth
  253. {
  254. get { return balYearMonth; }
  255. set { balYearMonth = value; }
  256. }
  257. /// <summary>
  258. /// 申请判定顺序号
  259. /// </summary>
  260. [Description("申请判定顺序号")]
  261. [Nullable(false)]
  262. [DataLength(3)]
  263. public string JugdeApplySequeno
  264. {
  265. get { return jugdeApplySequeno; }
  266. set { jugdeApplySequeno = value; }
  267. }
  268. /// <summary>
  269. /// 操作人
  270. /// </summary>
  271. [Description("操作人")]
  272. [Nullable(true)]
  273. [DataLength(20)]
  274. public string ColName
  275. {
  276. get { return colName; }
  277. set { colName = value; }
  278. }
  279. /// <summary>
  280. /// 操作时间
  281. /// </summary>
  282. [Description("操作时间")]
  283. [Nullable(true)]
  284. public string ColTime
  285. {
  286. get { return colTime; }
  287. set { colTime = value; }
  288. }
  289. /// <summary>
  290. /// 生产产线名称
  291. /// </summary>
  292. [Description("生产产线名称")]
  293. [Nullable(true)]
  294. [DataLength(100)]
  295. public string PlineName
  296. {
  297. get { return plineName; }
  298. set { plineName = value; }
  299. }
  300. /// <summary>
  301. /// 质量分组号(同申判单号、炉、批、组的前期下,当表面、公差、成分、理化、控伤、水压、加工七大项的组合值不一样时,组号必须分开)
  302. /// </summary>
  303. [Description("质量分组号(同申判单号、炉、批、组的前期下,当表面、公差、成分、理化、控伤、水压、加工七大项的组合值不一样时,组号必须分开)")]
  304. [Nullable(false)]
  305. [DataLength(22)]
  306. public decimal? QualityGroup
  307. {
  308. get { return qualityGroup; }
  309. set { qualityGroup = value; }
  310. }
  311. /// <summary>
  312. /// 材料去向代码
  313. /// </summary>
  314. [Description("材料去向代码")]
  315. [Nullable(false)]
  316. [DataLength(20)]
  317. public string MatGowhereCode
  318. {
  319. get { return matGowhereCode; }
  320. set { matGowhereCode = value; }
  321. }
  322. /// <summary>
  323. /// 材料去向
  324. /// </summary>
  325. [Description("材料去向")]
  326. [Nullable(true)]
  327. [DataLength(40)]
  328. public string MatGowhereName
  329. {
  330. get { return matGowhereName; }
  331. set { matGowhereName = value; }
  332. }
  333. /// <summary>
  334. /// 主键
  335. /// </summary>
  336. [Description("主键")]
  337. [Nullable(false)]
  338. [DataLength(40)]
  339. public string ColId
  340. {
  341. get { return colId; }
  342. set { colId = value; }
  343. }
  344. }
  345. }