QcmZgPhyjudgeEntity.cs 8.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305
  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_PHYJUDGE所对应的实体类(生成工具:代码生成工具4.0 访问地址:http://172.16.2.128/tool/)
  9. /// 作者:tgcx-test 时间:2016-09-29
  10. /// </summary>
  11. public class QcmZgPhyjudgeEntity
  12. {
  13. /// <summary>
  14. /// 理化判定记录ID
  15. /// </summary>
  16. private string phyJudgeId = "";
  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 objectno = "";
  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 judgeresultPhy = "";
  45. /// <summary>
  46. /// 判定钢级(牌号)
  47. /// </summary>
  48. private string judgesteelcode = "";
  49. /// <summary>
  50. /// 判定钢种
  51. /// </summary>
  52. private string judgegradecode = "";
  53. /// <summary>
  54. /// 判定备注
  55. /// </summary>
  56. private string memo = "";
  57. /// <summary>
  58. /// 理化判定结果集ID
  59. /// </summary>
  60. private string phyResultId = "";
  61. /// <summary>
  62. /// 有效标志(1:有效,0:无效)
  63. /// </summary>
  64. private string validflag = "";
  65. /// <summary>
  66. /// 判定人
  67. /// </summary>
  68. private string createName = "";
  69. /// <summary>
  70. /// 判定时间
  71. /// </summary>
  72. private string createTime = "";
  73. private string jugdeApplyCode = "";
  74. private string batchNo = "";
  75. private string heatPlanNo = "";
  76. /// <summary>
  77. /// 理化判定记录ID
  78. /// </summary>
  79. [Description("理化判定记录ID")]
  80. [Nullable(false)]
  81. [DataLength(20)]
  82. [JsonProperty("phyJudgeId")]
  83. public string PhyJudgeId
  84. {
  85. get { return phyJudgeId; }
  86. set { phyJudgeId = value; }
  87. }
  88. /// <summary>
  89. /// 熔炼炉号
  90. /// </summary>
  91. [Description("冶炼炉号")]
  92. [Nullable(true)]
  93. [DataLength(20)]
  94. [JsonProperty("stoveNo")]
  95. public string StoveNo
  96. {
  97. get { return stoveNo; }
  98. set { stoveNo = value; }
  99. }
  100. /// <summary>
  101. /// 判定炉号
  102. /// </summary>
  103. [Description("判定炉号")]
  104. [Nullable(true)]
  105. [DataLength(6)]
  106. [JsonProperty("judgeStoveNo")]
  107. public string JudgeStoveNo
  108. {
  109. get { return judgeStoveNo; }
  110. set { judgeStoveNo = value; }
  111. }
  112. /// <summary>
  113. /// 材料号
  114. /// </summary>
  115. [Description("材料号")]
  116. [Nullable(true)]
  117. [DataLength(20)]
  118. [JsonProperty("objectno")]
  119. public string Objectno
  120. {
  121. get { return objectno; }
  122. set { objectno = value; }
  123. }
  124. /// <summary>
  125. /// 产线代码
  126. /// </summary>
  127. [Description("产线代码")]
  128. [Nullable(true)]
  129. [DataLength(4)]
  130. [JsonProperty("plineCode")]
  131. public string PlineCode
  132. {
  133. get { return plineCode; }
  134. set { plineCode = value; }
  135. }
  136. /// <summary>
  137. /// 工序代码(A\B\C\D.....)
  138. /// </summary>
  139. [Description("工序代码(A\\B\\C\\D.....)")]
  140. [Nullable(true)]
  141. [DataLength(1)]
  142. [JsonProperty("processCdoe")]
  143. public string ProcessCdoe
  144. {
  145. get { return processCdoe; }
  146. set { processCdoe = value; }
  147. }
  148. /// <summary>
  149. /// 工序名称
  150. /// </summary>
  151. [Description("工序名称")]
  152. [Nullable(true)]
  153. [DataLength(50)]
  154. [JsonProperty("processDesc")]
  155. public string ProcessDesc
  156. {
  157. get { return processDesc; }
  158. set { processDesc = value; }
  159. }
  160. /// <summary>
  161. /// 理化判定结果(4074)
  162. /// </summary>
  163. [Description("理化判定结果(4074)")]
  164. [Nullable(false)]
  165. [DataLength(20)]
  166. [JsonProperty("judgeresultPhy")]
  167. public string JudgeresultPhy
  168. {
  169. get { return judgeresultPhy; }
  170. set { judgeresultPhy = value; }
  171. }
  172. /// <summary>
  173. /// 判定钢级(牌号)
  174. /// </summary>
  175. [Description("判定钢级(牌号)")]
  176. [Nullable(true)]
  177. [DataLength(40)]
  178. [JsonProperty("judgesteelcode")]
  179. public string Judgesteelcode
  180. {
  181. get { return judgesteelcode; }
  182. set { judgesteelcode = value; }
  183. }
  184. /// <summary>
  185. /// 判定钢种
  186. /// </summary>
  187. [Description("判定钢种")]
  188. [Nullable(true)]
  189. [DataLength(40)]
  190. [JsonProperty("judgegradecode")]
  191. public string Judgegradecode
  192. {
  193. get { return judgegradecode; }
  194. set { judgegradecode = value; }
  195. }
  196. /// <summary>
  197. /// 判定备注
  198. /// </summary>
  199. [Description("判定备注")]
  200. [Nullable(true)]
  201. [DataLength(200)]
  202. [JsonProperty("memo")]
  203. public string Memo
  204. {
  205. get { return memo; }
  206. set { memo = value; }
  207. }
  208. /// <summary>
  209. /// 理化判定结果集ID
  210. /// </summary>
  211. [Description("理化判定结果集ID")]
  212. [Nullable(false)]
  213. [DataLength(20)]
  214. [JsonProperty("phyResultId")]
  215. public string PhyResultId
  216. {
  217. get { return phyResultId; }
  218. set { phyResultId = value; }
  219. }
  220. /// <summary>
  221. /// 有效标志(1:有效,0:无效)
  222. /// </summary>
  223. [Description("有效标志(1:有效,0:无效)")]
  224. [Nullable(false)]
  225. [DataLength(1)]
  226. [JsonProperty("validflag")]
  227. public string Validflag
  228. {
  229. get { return validflag; }
  230. set { validflag = value; }
  231. }
  232. /// <summary>
  233. /// 判定人
  234. /// </summary>
  235. [Description("判定人")]
  236. [Nullable(true)]
  237. [DataLength(20)]
  238. [JsonProperty("createName")]
  239. public string CreateName
  240. {
  241. get { return createName; }
  242. set { createName = value; }
  243. }
  244. /// <summary>
  245. /// 判定时间
  246. /// </summary>
  247. [Description("判定时间")]
  248. [Nullable(false)]
  249. [JsonProperty("createTime")]
  250. public string CreateTime
  251. {
  252. get { return createTime; }
  253. set { createTime = value; }
  254. }
  255. /// <summary>
  256. /// 判定单号
  257. /// </summary>
  258. [Description("判定单号")]
  259. [JsonProperty("jugdeApplyCode")]
  260. public string JugdeApplyCode
  261. {
  262. get { return jugdeApplyCode; }
  263. set { jugdeApplyCode = value; }
  264. }
  265. /// <summary>
  266. /// 批号
  267. /// </summary>
  268. [Description("批号")]
  269. [JsonProperty("batchNo")]
  270. public string BatchNo
  271. {
  272. get { return batchNo; }
  273. set { batchNo = value; }
  274. }
  275. /// <summary>
  276. /// 轧管炉计划
  277. /// </summary>
  278. [Description("轧管炉计划ID")]
  279. [JsonProperty("heatPlanNo")]
  280. public string HeatPlanNo
  281. {
  282. get { return heatPlanNo; }
  283. set { heatPlanNo = value; }
  284. }
  285. }
  286. }