QcmLgJudgeEntity.cs 11 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405
  1. using Core.Mes.Client.Comm.Attribute;
  2. using Newtonsoft.Json;
  3. using System;
  4. using System.ComponentModel;
  5. namespace Core.StlMes.Client.Judge.Models
  6. {
  7. /// <summary>
  8. /// 数据库表QCM_LG_JUDGE所对应的实体类(生成工具:代码生成工具4.0 访问地址:http://172.16.2.128/tool/)
  9. /// 作者:tgcx-test 时间:2016-11-04
  10. /// </summary>
  11. public class QcmLgJudgeEntity
  12. {
  13. /// <summary>
  14. /// 综合判定记录ID
  15. /// </summary>
  16. private string judgeId = "";
  17. /// <summary>
  18. /// 熔炼炉号
  19. /// </summary>
  20. private string stoveNo = "";
  21. /// <summary>
  22. /// 判定炉号
  23. /// </summary>
  24. private string judgeStoveNo = "";
  25. /// <summary>
  26. /// 坯料号
  27. /// </summary>
  28. private string objectno2 = "";
  29. /// <summary>
  30. /// 产线代码
  31. /// </summary>
  32. private string plineCode = "";
  33. /// <summary>
  34. /// 工序代码(A\B\C\D.....)
  35. /// </summary>
  36. private string processCdoe = "";
  37. /// <summary>
  38. /// 工序名称
  39. /// </summary>
  40. private string processDesc = "";
  41. /// <summary>
  42. /// 成分判定结果(4074)
  43. /// </summary>
  44. private string judgeresultChem = "";
  45. /// <summary>
  46. /// 理化判定结果(4074)
  47. /// </summary>
  48. private string judgeresultPhy = "";
  49. /// <summary>
  50. /// 表面判定结果(4074)
  51. /// </summary>
  52. private string judgeresultFace = "";
  53. /// <summary>
  54. /// 公差判定结果(4074)
  55. /// </summary>
  56. private string judgeresultSpec = "";
  57. /// <summary>
  58. /// 综合判定结果(4074)
  59. /// </summary>
  60. private string judgeresult = "";
  61. /// <summary>
  62. /// 判定原因
  63. /// </summary>
  64. private string judgereason = "";
  65. /// <summary>
  66. /// 成分化验号
  67. /// </summary>
  68. private string assayno = "";
  69. /// <summary>
  70. /// 理化判定结果集ID
  71. /// </summary>
  72. private string phyResultId = "";
  73. /// <summary>
  74. /// 成分判定备注
  75. /// </summary>
  76. private string memoChem = "";
  77. /// <summary>
  78. /// 理化判定备注
  79. /// </summary>
  80. private string memoPhy = "";
  81. /// <summary>
  82. /// 表面判定备注
  83. /// </summary>
  84. private string memoFace = "";
  85. /// <summary>
  86. /// 公差判定备注
  87. /// </summary>
  88. private string memoSpec = "";
  89. /// <summary>
  90. /// 综合判定备注
  91. /// </summary>
  92. private string memo = "";
  93. /// <summary>
  94. /// 有效标志(1:有效;0:无效)
  95. /// </summary>
  96. private string validflag = "";
  97. /// <summary>
  98. /// 判定人
  99. /// </summary>
  100. private string createName = "";
  101. /// <summary>
  102. /// 判定时间
  103. /// </summary>
  104. private string createTime = "";
  105. /// <summary>
  106. /// 综合判定记录ID
  107. /// </summary>
  108. [Description("综合判定记录ID")]
  109. [Nullable(false)]
  110. [DataLength(20)]
  111. [JsonProperty("judgeId")]
  112. public string JudgeId
  113. {
  114. get { return judgeId; }
  115. set { judgeId = value; }
  116. }
  117. /// <summary>
  118. /// 冶炼炉号
  119. /// </summary>
  120. [Description("冶炼炉号")]
  121. [Nullable(true)]
  122. [DataLength(20)]
  123. [JsonProperty("stoveNo")]
  124. public string StoveNo
  125. {
  126. get { return stoveNo; }
  127. set { stoveNo = value; }
  128. }
  129. /// <summary>
  130. /// 判定炉号
  131. /// </summary>
  132. [Description("判定炉号")]
  133. [Nullable(true)]
  134. [DataLength(6)]
  135. [JsonProperty("judgeStoveNo")]
  136. public string JudgeStoveNo
  137. {
  138. get { return judgeStoveNo; }
  139. set { judgeStoveNo = value; }
  140. }
  141. /// <summary>
  142. /// 坯料号
  143. /// </summary>
  144. [Description("坯料号")]
  145. [Nullable(true)]
  146. [DataLength(20)]
  147. [JsonProperty("objectno2")]
  148. public string Objectno2
  149. {
  150. get { return objectno2; }
  151. set { objectno2 = value; }
  152. }
  153. /// <summary>
  154. /// 产线代码
  155. /// </summary>
  156. [Description("产线代码")]
  157. [Nullable(true)]
  158. [DataLength(4)]
  159. [JsonProperty("plineCode")]
  160. public string PlineCode
  161. {
  162. get { return plineCode; }
  163. set { plineCode = value; }
  164. }
  165. /// <summary>
  166. /// 工序代码(A\B\C\D.....)
  167. /// </summary>
  168. [Description("工序代码")]
  169. [Nullable(true)]
  170. [DataLength(1)]
  171. [JsonProperty("processCdoe")]
  172. public string ProcessCdoe
  173. {
  174. get { return processCdoe; }
  175. set { processCdoe = value; }
  176. }
  177. /// <summary>
  178. /// 工序名称
  179. /// </summary>
  180. [Description("工序名称")]
  181. [Nullable(true)]
  182. [DataLength(50)]
  183. [JsonProperty("processDesc")]
  184. public string ProcessDesc
  185. {
  186. get { return processDesc; }
  187. set { processDesc = value; }
  188. }
  189. /// <summary>
  190. /// 成分判定结果(4074)
  191. /// </summary>
  192. [Description("成分判定结果(4074)")]
  193. [Nullable(true)]
  194. [DataLength(20)]
  195. [JsonProperty("judgeresultChem")]
  196. public string JudgeresultChem
  197. {
  198. get { return judgeresultChem; }
  199. set { judgeresultChem = value; }
  200. }
  201. /// <summary>
  202. /// 理化判定结果(4074)
  203. /// </summary>
  204. [Description("理化判定结果(4074)")]
  205. [Nullable(true)]
  206. [DataLength(20)]
  207. [JsonProperty("judgeresultPhy")]
  208. public string JudgeresultPhy
  209. {
  210. get { return judgeresultPhy; }
  211. set { judgeresultPhy = value; }
  212. }
  213. /// <summary>
  214. /// 表面判定结果(4074)
  215. /// </summary>
  216. [Description("表面判定结果(4074)")]
  217. [Nullable(true)]
  218. [DataLength(20)]
  219. [JsonProperty("judgeresultFace")]
  220. public string JudgeresultFace
  221. {
  222. get { return judgeresultFace; }
  223. set { judgeresultFace = value; }
  224. }
  225. /// <summary>
  226. /// 公差判定结果(4074)
  227. /// </summary>
  228. [Description("公差判定结果(4074)")]
  229. [Nullable(true)]
  230. [DataLength(20)]
  231. [JsonProperty("judgeresultSpec")]
  232. public string JudgeresultSpec
  233. {
  234. get { return judgeresultSpec; }
  235. set { judgeresultSpec = value; }
  236. }
  237. /// <summary>
  238. /// 综合判定结果(4074)
  239. /// </summary>
  240. [Description("综合判定结果(4074)")]
  241. [Nullable(false)]
  242. [DataLength(20)]
  243. [JsonProperty("judgeresult")]
  244. public string Judgeresult
  245. {
  246. get { return judgeresult; }
  247. set { judgeresult = value; }
  248. }
  249. /// <summary>
  250. /// 判定原因
  251. /// </summary>
  252. [Description("判定原因")]
  253. [Nullable(true)]
  254. [DataLength(200)]
  255. [JsonProperty("judgereason")]
  256. public string Judgereason
  257. {
  258. get { return judgereason; }
  259. set { judgereason = value; }
  260. }
  261. /// <summary>
  262. /// 成分化验号
  263. /// </summary>
  264. [Description("成分化验号")]
  265. [Nullable(false)]
  266. [DataLength(30)]
  267. [JsonProperty("assayno")]
  268. public string Assayno
  269. {
  270. get { return assayno; }
  271. set { assayno = value; }
  272. }
  273. /// <summary>
  274. /// 理化判定结果集ID
  275. /// </summary>
  276. [Description("理化判定结果集ID")]
  277. [Nullable(true)]
  278. [DataLength(20)]
  279. [JsonProperty("phyResultId")]
  280. public string PhyResultId
  281. {
  282. get { return phyResultId; }
  283. set { phyResultId = value; }
  284. }
  285. /// <summary>
  286. /// 成分判定备注
  287. /// </summary>
  288. [Description("成分判定备注")]
  289. [Nullable(true)]
  290. [DataLength(500)]
  291. [JsonProperty("memoChem")]
  292. public string MemoChem
  293. {
  294. get { return memoChem; }
  295. set { memoChem = value; }
  296. }
  297. /// <summary>
  298. /// 理化判定备注
  299. /// </summary>
  300. [Description("理化判定备注")]
  301. [Nullable(true)]
  302. [DataLength(500)]
  303. [JsonProperty("memoPhy")]
  304. public string MemoPhy
  305. {
  306. get { return memoPhy; }
  307. set { memoPhy = value; }
  308. }
  309. /// <summary>
  310. /// 表面判定备注
  311. /// </summary>
  312. [Description("表面判定备注")]
  313. [Nullable(true)]
  314. [DataLength(500)]
  315. [JsonProperty("memoFace")]
  316. public string MemoFace
  317. {
  318. get { return memoFace; }
  319. set { memoFace = value; }
  320. }
  321. /// <summary>
  322. /// 公差判定备注
  323. /// </summary>
  324. [Description("公差判定备注")]
  325. [Nullable(true)]
  326. [DataLength(500)]
  327. [JsonProperty("memoSpec")]
  328. public string MemoSpec
  329. {
  330. get { return memoSpec; }
  331. set { memoSpec = value; }
  332. }
  333. /// <summary>
  334. /// 综合判定备注
  335. /// </summary>
  336. [Description("综合判定备注")]
  337. [Nullable(true)]
  338. [DataLength(500)]
  339. [JsonProperty("memo")]
  340. public string Memo
  341. {
  342. get { return memo; }
  343. set { memo = value; }
  344. }
  345. /// <summary>
  346. /// 有效标志(1:有效;0:无效)
  347. /// </summary>
  348. [Description("有效标志")]
  349. [Nullable(false)]
  350. [DataLength(1)]
  351. [JsonProperty("validflag")]
  352. public string Validflag
  353. {
  354. get { return validflag; }
  355. set { validflag = value; }
  356. }
  357. /// <summary>
  358. /// 判定人
  359. /// </summary>
  360. [Description("判定人")]
  361. [Nullable(true)]
  362. [DataLength(20)]
  363. [JsonProperty("createName")]
  364. public string CreateName
  365. {
  366. get { return createName; }
  367. set { createName = value; }
  368. }
  369. /// <summary>
  370. /// 判定时间
  371. /// </summary>
  372. [Description("判定时间")]
  373. [Nullable(true)]
  374. [JsonProperty("createTime")]
  375. public string CreateTime
  376. {
  377. get { return createTime; }
  378. set { createTime = value; }
  379. }
  380. }
  381. }