MilCheckDeatilSimpleEntity.cs 4.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193
  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. /// 数据库表MIL_CHECK_DEATIL_SIMPLE所对应的实体类(生成工具:代码生成工具3.0)
  11. /// 作者:DESKTOP-QMNRTG1 时间:2023-05-22
  12. /// </summary>
  13. public class MilCheckDeatilSimpleEntity
  14. {
  15. /// <summary>
  16. /// 炉号
  17. /// </summary>
  18. private string judgeStoveNo = "";
  19. /// <summary>
  20. /// 缺陷项名称
  21. /// </summary>
  22. private string defectItem = "";
  23. /// <summary>
  24. /// 废品支
  25. /// </summary>
  26. private decimal? wasteBranch = null;
  27. /// <summary>
  28. /// 废品吨
  29. /// </summary>
  30. private decimal? wasteTons = null;
  31. /// <summary>
  32. /// 下线支
  33. /// </summary>
  34. private decimal? offlineProduct = null;
  35. /// <summary>
  36. /// 缺陷项代码
  37. /// </summary>
  38. private string defectCode = "";
  39. /// <summary>
  40. /// 实绩编号
  41. /// </summary>
  42. private string resultNo = "";
  43. /// <summary>
  44. /// 性能批号
  45. /// </summary>
  46. private string simpleLotNo = "";
  47. /// <summary>
  48. /// 轧管订单编号
  49. /// </summary>
  50. private string proPlanId = "";
  51. /// <summary>
  52. /// 工序排产序号
  53. /// </summary>
  54. private string gxPlanNo = "";
  55. /// <summary>
  56. /// 有效标志(1:有效,0:无效)
  57. /// </summary>
  58. private string validflag = "";
  59. /// <summary>
  60. /// 炉号
  61. /// </summary>
  62. [Description("炉号")]
  63. [Nullable(false)]
  64. [DataLength(20)]
  65. public string JudgeStoveNo
  66. {
  67. get { return judgeStoveNo; }
  68. set { judgeStoveNo = value; }
  69. }
  70. /// <summary>
  71. /// 缺陷项名称
  72. /// </summary>
  73. [Description("缺陷项名称")]
  74. [Nullable(false)]
  75. [DataLength(20)]
  76. public string DefectItem
  77. {
  78. get { return defectItem; }
  79. set { defectItem = value; }
  80. }
  81. /// <summary>
  82. /// 废品支
  83. /// </summary>
  84. [Description("废品支")]
  85. [Nullable(true)]
  86. [DataLength(6)]
  87. public decimal? WasteBranch
  88. {
  89. get { return wasteBranch; }
  90. set { wasteBranch = value; }
  91. }
  92. /// <summary>
  93. /// 废品吨
  94. /// </summary>
  95. [Description("废品吨")]
  96. [Nullable(true)]
  97. [DataLength(8)]
  98. public decimal? WasteTons
  99. {
  100. get { return wasteTons; }
  101. set { wasteTons = value; }
  102. }
  103. /// <summary>
  104. /// 下线支
  105. /// </summary>
  106. [Description("下线支")]
  107. [Nullable(true)]
  108. [DataLength(6)]
  109. public decimal? OfflineProduct
  110. {
  111. get { return offlineProduct; }
  112. set { offlineProduct = value; }
  113. }
  114. /// <summary>
  115. /// 缺陷项代码
  116. /// </summary>
  117. [Description("缺陷项代码")]
  118. [Nullable(false)]
  119. [DataLength(10)]
  120. public string DefectCode
  121. {
  122. get { return defectCode; }
  123. set { defectCode = value; }
  124. }
  125. /// <summary>
  126. /// 实绩编号
  127. /// </summary>
  128. [Description("实绩编号")]
  129. [Nullable(false)]
  130. [DataLength(20)]
  131. public string ResultNo
  132. {
  133. get { return resultNo; }
  134. set { resultNo = value; }
  135. }
  136. /// <summary>
  137. /// 性能批号
  138. /// </summary>
  139. [Description("性能批号")]
  140. [Nullable(true)]
  141. [DataLength(20)]
  142. public string SimpleLotNo
  143. {
  144. get { return simpleLotNo; }
  145. set { simpleLotNo = value; }
  146. }
  147. /// <summary>
  148. /// 轧管订单编号
  149. /// </summary>
  150. [Description("轧管订单编号")]
  151. [Nullable(true)]
  152. [DataLength(20)]
  153. public string ProPlanId
  154. {
  155. get { return proPlanId; }
  156. set { proPlanId = value; }
  157. }
  158. /// <summary>
  159. /// 工序排产序号
  160. /// </summary>
  161. [Description("工序排产序号")]
  162. [Nullable(true)]
  163. [DataLength(10)]
  164. public string GxPlanNo
  165. {
  166. get { return gxPlanNo; }
  167. set { gxPlanNo = value; }
  168. }
  169. /// <summary>
  170. /// 有效标志(1:有效,0:无效)
  171. /// </summary>
  172. [Description("有效标志(1:有效,0:无效)")]
  173. [Nullable(true)]
  174. [DataLength(1)]
  175. public string Validflag
  176. {
  177. get { return validflag; }
  178. set { validflag = value; }
  179. }
  180. }
  181. }