PortHttBatchSampleResultEntityTotal.cs 4.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198
  1. using System;
  2. using System.Collections.Generic;
  3. using System.ComponentModel;
  4. using System.Linq;
  5. using System.Text;
  6. using Core.Mes.Client.Comm.Attribute;
  7. namespace Core.StlMes.Client.Mcp.Control.Entity
  8. {
  9. [Serializable]
  10. /// <summary>
  11. /// 数据库表PORT_HTT_BATCH_SAMPLE_RESULT所对应的实体类(生成工具:代码生成工具3.0)
  12. /// 作者:PC-20180117CCCC 时间:2018-06-07
  13. /// </summary>
  14. public class PortHttBatchSampleResultEntityTotal
  15. {
  16. /// <summary>
  17. /// 材料支数(实际)
  18. /// </summary>
  19. private decimal? actCount = null;
  20. private decimal? passCount = null;
  21. private decimal? failCount = null;
  22. private decimal? offLineCount = null;
  23. private decimal? newStoveCount = null;
  24. private decimal? actWeight = null;
  25. private decimal? passWeight = null;
  26. private decimal? failWeight = null;
  27. private decimal? offLineWeight = null;
  28. private decimal? newStoveWeight = null;
  29. private List<PortHttBatchSampleResultEntity> portHttBatchSampleResultEntitys = null;
  30. public List<PortHttBatchSampleResultEntity> PortHttBatchSampleResultEntitys
  31. {
  32. get { return portHttBatchSampleResultEntitys; }
  33. set { portHttBatchSampleResultEntitys = value; }
  34. }
  35. /// <summary>
  36. /// 实际热处理取样分批(性能批号)
  37. /// </summary>
  38. private string phyBatchNo = "";
  39. /// <summary>
  40. /// 材料支数(实际)
  41. /// </summary>
  42. [Description("作业支数")]
  43. [Nullable(true)]
  44. [DataLength(3)]
  45. public decimal? ActCount
  46. {
  47. get { return actCount; }
  48. set { actCount = value; }
  49. }
  50. /// <summary>
  51. /// 材料支数(实际)
  52. /// </summary>
  53. [Description("作业重量")]
  54. [Nullable(true)]
  55. [DataLength(3)]
  56. public decimal? ActWeight
  57. {
  58. get { return actWeight; }
  59. set { actWeight = value; }
  60. }
  61. /// <summary>
  62. /// 材料支数(实际)
  63. /// </summary>
  64. [Description("合格支数")]
  65. [Nullable(true)]
  66. [DataLength(3)]
  67. public decimal? PassCount
  68. {
  69. get { return passCount; }
  70. set { passCount = value; }
  71. }
  72. /// <summary>
  73. /// 材料支数(实际)
  74. /// </summary>
  75. [Description("废品支数")]
  76. [Nullable(true)]
  77. [DataLength(3)]
  78. public decimal? FailCount
  79. {
  80. get { return failCount; }
  81. set { failCount = value; }
  82. }
  83. /// <summary>
  84. /// 材料支数(实际)
  85. /// </summary>
  86. [Description("离线支数")]
  87. [Nullable(true)]
  88. [DataLength(3)]
  89. public decimal? OffLineCount
  90. {
  91. get { return offLineCount; }
  92. set { offLineCount = value; }
  93. }
  94. /// <summary>
  95. /// 材料支数(实际)
  96. /// </summary>
  97. [Description("另组炉支数")]
  98. [Nullable(true)]
  99. [DataLength(3)]
  100. public decimal? NewStoveCount
  101. {
  102. get { return newStoveCount; }
  103. set { newStoveCount = value; }
  104. }
  105. /// <summary>
  106. /// 材料支数(实际)
  107. /// </summary>
  108. [Description("合格重量")]
  109. [Nullable(true)]
  110. [DataLength(3)]
  111. public decimal? PassWeight
  112. {
  113. get { return passWeight; }
  114. set { passWeight = value; }
  115. }
  116. /// <summary>
  117. /// 材料支数(实际)
  118. /// </summary>
  119. [Description("废品重量")]
  120. [Nullable(true)]
  121. [DataLength(3)]
  122. public decimal? FailWeight
  123. {
  124. get { return failWeight; }
  125. set { failWeight = value; }
  126. }
  127. /// <summary>
  128. /// 材料支数(实际)
  129. /// </summary>
  130. [Description("离线重量")]
  131. [Nullable(true)]
  132. [DataLength(3)]
  133. public decimal? OffLineWeight
  134. {
  135. get { return offLineWeight; }
  136. set { offLineWeight = value; }
  137. }
  138. /// <summary>
  139. /// 材料支数(实际)
  140. /// </summary>
  141. [Description("另组炉重量")]
  142. [Nullable(true)]
  143. [DataLength(3)]
  144. public decimal? NewStoveWeight
  145. {
  146. get { return newStoveWeight; }
  147. set { newStoveWeight = value; }
  148. }
  149. /// <summary>
  150. /// 实际热处理取样分批(性能批号)
  151. /// </summary>
  152. [Description("批号")]
  153. [Nullable(true)]
  154. [DataLength(10)]
  155. public string PhyBatchNo
  156. {
  157. get { return phyBatchNo; }
  158. set { phyBatchNo = value; }
  159. }
  160. }
  161. }