QcmLgChemjudgeExceptionEntity.cs 6.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252
  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_CHEMJUDGE_EXCEPTION所对应的实体类(生成工具:代码生成工具4.0 访问地址:http://172.16.2.128/tool/)
  9. /// 作者:tgcx-test 时间:2016-09-08
  10. /// </summary>
  11. public class QcmLgChemjudgeExceptionEntity
  12. {
  13. /// <summary>
  14. /// 成分判定记录ID(QCM_ZG_CHEMJUDGE)
  15. /// </summary>
  16. private string chemJudgeId = "";
  17. /// <summary>
  18. /// 生产批号
  19. /// </summary>
  20. private string lotNo = "";
  21. /// <summary>
  22. /// 判定炉号
  23. /// </summary>
  24. private string judgeStoveNo = "";
  25. /// <summary>
  26. /// 计划生产订单号
  27. /// </summary>
  28. private string planProorder = "";
  29. /// <summary>
  30. /// ORD_LN_PK(ORD_PK+三位流失号)
  31. /// </summary>
  32. private string ordLnPk = "";
  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. /// 成分化验号
  47. /// </summary>
  48. private string assayno = "";
  49. /// <summary>
  50. /// 是否脱单(1:是,0:否)
  51. /// </summary>
  52. private string orderisunchain = "";
  53. /// <summary>
  54. /// 有效标志(1:有效;0:无效)
  55. /// </summary>
  56. private string validflag = "";
  57. /// <summary>
  58. /// 备注
  59. /// </summary>
  60. private string memo = "";
  61. /// <summary>
  62. /// 判定人
  63. /// </summary>
  64. private string createName = "";
  65. /// <summary>
  66. /// 判定时间
  67. /// </summary>
  68. private string createTime = "";
  69. /// <summary>
  70. /// 成分判定记录ID(QCM_ZG_CHEMJUDGE)
  71. /// </summary>
  72. [Description("成分判定记录ID")]
  73. [Nullable(false)]
  74. [DataLength(20)]
  75. [JsonProperty("chemJudgeId")]
  76. public string ChemJudgeId
  77. {
  78. get { return chemJudgeId; }
  79. set { chemJudgeId = value; }
  80. }
  81. /// <summary>
  82. /// 生产批号
  83. /// </summary>
  84. [Description("生产批号")]
  85. [Nullable(true)]
  86. [DataLength(20)]
  87. [JsonProperty("lotNo")]
  88. public string LotNo
  89. {
  90. get { return lotNo; }
  91. set { lotNo = value; }
  92. }
  93. /// <summary>
  94. /// 判定炉号
  95. /// </summary>
  96. [Description("判定炉号")]
  97. [Nullable(false)]
  98. [DataLength(6)]
  99. [JsonProperty("judgeStoveNo")]
  100. public string JudgeStoveNo
  101. {
  102. get { return judgeStoveNo; }
  103. set { judgeStoveNo = value; }
  104. }
  105. /// <summary>
  106. /// 计划生产订单号
  107. /// </summary>
  108. [Description("计划生产订单号")]
  109. [Nullable(false)]
  110. [DataLength(40)]
  111. [JsonProperty("planProorder")]
  112. public string PlanProorder
  113. {
  114. get { return planProorder; }
  115. set { planProorder = value; }
  116. }
  117. /// <summary>
  118. /// ORD_LN_PK(ORD_PK+三位流失号)
  119. /// </summary>
  120. [Description("ORD_LN_PK(ORD_PK+三位流失号)")]
  121. [Nullable(false)]
  122. [DataLength(40)]
  123. [JsonProperty("ordLnPk")]
  124. public string OrdLnPk
  125. {
  126. get { return ordLnPk; }
  127. set { ordLnPk = value; }
  128. }
  129. /// <summary>
  130. /// 工序代码(A\B\C\D.....)
  131. /// </summary>
  132. [Description("工序代码")]
  133. [Nullable(false)]
  134. [DataLength(1)]
  135. [JsonProperty("processCdoe")]
  136. public string ProcessCdoe
  137. {
  138. get { return processCdoe; }
  139. set { processCdoe = value; }
  140. }
  141. /// <summary>
  142. /// 工序名称
  143. /// </summary>
  144. [Description("工序名称")]
  145. [Nullable(true)]
  146. [DataLength(50)]
  147. [JsonProperty("processDesc")]
  148. public string ProcessDesc
  149. {
  150. get { return processDesc; }
  151. set { processDesc = value; }
  152. }
  153. /// <summary>
  154. /// 成分判定结果(4074)
  155. /// </summary>
  156. [Description("成分判定结果")]
  157. [Nullable(false)]
  158. [DataLength(20)]
  159. [JsonProperty("judgeresultChem")]
  160. public string JudgeresultChem
  161. {
  162. get { return judgeresultChem; }
  163. set { judgeresultChem = value; }
  164. }
  165. /// <summary>
  166. /// 成分化验号
  167. /// </summary>
  168. [Description("成分化验号")]
  169. [Nullable(false)]
  170. [DataLength(300)]
  171. [JsonProperty("assayno")]
  172. public string Assayno
  173. {
  174. get { return assayno; }
  175. set { assayno = value; }
  176. }
  177. /// <summary>
  178. /// 是否脱单(1:是,0:否)
  179. /// </summary>
  180. [Description("是否脱单")]
  181. [Nullable(false)]
  182. [DataLength(1)]
  183. [JsonProperty("orderisunchain")]
  184. public string Orderisunchain
  185. {
  186. get { return orderisunchain; }
  187. set { orderisunchain = value; }
  188. }
  189. /// <summary>
  190. /// 有效标志(1:有效;0:无效)
  191. /// </summary>
  192. [Description("有效标志")]
  193. [Nullable(false)]
  194. [DataLength(1)]
  195. [JsonProperty("validflag")]
  196. public string Validflag
  197. {
  198. get { return validflag; }
  199. set { validflag = value; }
  200. }
  201. /// <summary>
  202. /// 备注
  203. /// </summary>
  204. [Description("备注")]
  205. [Nullable(true)]
  206. [DataLength(500)]
  207. [JsonProperty("memo")]
  208. public string Memo
  209. {
  210. get { return memo; }
  211. set { memo = value; }
  212. }
  213. /// <summary>
  214. /// 判定人
  215. /// </summary>
  216. [Description("判定人")]
  217. [Nullable(true)]
  218. [DataLength(20)]
  219. [JsonProperty("createName")]
  220. public string CreateName
  221. {
  222. get { return createName; }
  223. set { createName = value; }
  224. }
  225. /// <summary>
  226. /// 判定时间
  227. /// </summary>
  228. [Description("判定时间")]
  229. [Nullable(true)]
  230. [JsonProperty("createTime")]
  231. public string CreateTime
  232. {
  233. get { return createTime; }
  234. set { createTime = value; }
  235. }
  236. }
  237. }