QcmJudgeLockEntity.cs 4.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179
  1. namespace Core.StlMes.Client.Judge.Models
  2. {
  3. public class QcmJudgeLockEntity
  4. {
  5. /**
  6. * 主键
  7. */
  8. private string lockId = "";
  9. public string LockId
  10. {
  11. get { return lockId; }
  12. set { lockId = value; }
  13. }
  14. /**
  15. * 工序代码(A\B\C\D.....)
  16. */
  17. private string processCode = "";
  18. public string ProcessCode
  19. {
  20. get { return processCode; }
  21. set { processCode = value; }
  22. }
  23. /**
  24. * 判定炉号
  25. */
  26. private string judgeStoveNo = "";
  27. public string JudgeStoveNo
  28. {
  29. get { return judgeStoveNo; }
  30. set { judgeStoveNo = value; }
  31. }
  32. /**
  33. * 锁定原因
  34. */
  35. private string lockReason = "";
  36. public string LockReason
  37. {
  38. get { return lockReason; }
  39. set { lockReason = value; }
  40. }
  41. /**
  42. * 锁定时间
  43. */
  44. private string lockTime = "";
  45. public string LockTime
  46. {
  47. get { return lockTime; }
  48. set { lockTime = value; }
  49. }
  50. /**
  51. * 锁定人ID
  52. */
  53. private string lockUserId = "";
  54. public string LockUserId
  55. {
  56. get { return lockUserId; }
  57. set { lockUserId = value; }
  58. }
  59. /**
  60. * 解锁时间
  61. */
  62. private string unlockTime = "";
  63. public string UnlockTime
  64. {
  65. get { return unlockTime; }
  66. set { unlockTime = value; }
  67. }
  68. /**
  69. * 解锁人ID
  70. */
  71. private string unlockUserId = "";
  72. public string UnlockUserId
  73. {
  74. get { return unlockUserId; }
  75. set { unlockUserId = value; }
  76. }
  77. /**
  78. * 锁定工序代码
  79. */
  80. private string lockProcessCode = "";
  81. public string LockProcessCode
  82. {
  83. get { return lockProcessCode; }
  84. set { lockProcessCode = value; }
  85. }
  86. /**
  87. * 性能批号
  88. */
  89. private string batchNo = "";
  90. public string BatchNo
  91. {
  92. get { return batchNo; }
  93. set { batchNo = value; }
  94. }
  95. /**
  96. * 锁定标志
  97. */
  98. private string lockFlag = "";
  99. public string LockFlag
  100. {
  101. get { return lockFlag; }
  102. set { lockFlag = value; }
  103. }
  104. private string orderNo = "";
  105. public string OrderNo
  106. {
  107. get { return orderNo; }
  108. set { orderNo = value; }
  109. }
  110. private string steelname = "";
  111. public string Steelname
  112. {
  113. get { return steelname; }
  114. set { steelname = value; }
  115. }
  116. private string gradename = "";
  117. public string Gradename
  118. {
  119. get { return gradename; }
  120. set { gradename = value; }
  121. }
  122. private string specName = "";
  123. public string SpecName
  124. {
  125. get { return specName; }
  126. set { specName = value; }
  127. }
  128. private string actCount = "";
  129. public string ActCount
  130. {
  131. get { return actCount; }
  132. set { actCount = value; }
  133. }
  134. private string actWeight = "";
  135. public string ActWeight
  136. {
  137. get { return actWeight; }
  138. set { actWeight = value; }
  139. }
  140. private string processDesc = "";
  141. public string ProcessDesc
  142. {
  143. get { return processDesc; }
  144. set { processDesc = value; }
  145. }
  146. private string lockName = "";
  147. public string LockName
  148. {
  149. get { return lockName; }
  150. set { lockName = value; }
  151. }
  152. private string unlockName = "";
  153. public string UnlockName
  154. {
  155. get { return unlockName; }
  156. set { unlockName = value; }
  157. }
  158. }
  159. }