OrderStockEntity.cs 4.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187
  1. using System;
  2. using System.Collections.Generic;
  3. using System.ComponentModel;
  4. using System.Linq;
  5. using System.Text;
  6. namespace Core.StlMes.Client.YdmPipeReport.Entity
  7. {
  8. public class OrderStockEntity
  9. {
  10. private string orderNo;
  11. [Description("合同号")]
  12. public string OrderNo
  13. {
  14. get { return orderNo; }
  15. set { orderNo = value; }
  16. }
  17. private string judgeStoveNo;
  18. [Description("炉号")]
  19. public string JudgeStoveNo
  20. {
  21. get { return judgeStoveNo; }
  22. set { judgeStoveNo = value; }
  23. }
  24. private string batchNo;
  25. [Description("批号")]
  26. public string BatchNo
  27. {
  28. get { return batchNo; }
  29. set { batchNo = value; }
  30. }
  31. private string batchGroudNo;
  32. [Description("组号")]
  33. public string BatchGroudNo
  34. {
  35. get { return batchGroudNo; }
  36. set { batchGroudNo = value; }
  37. }
  38. private string producname;
  39. [Description("品名")]
  40. public string Producname
  41. {
  42. get { return producname; }
  43. set { producname = value; }
  44. }
  45. private string gradename;
  46. [Description("钢级牌号")]
  47. public string Gradename
  48. {
  49. get { return gradename; }
  50. set { gradename = value; }
  51. }
  52. private string modelDesc;
  53. [Description("扣型")]
  54. public string ModelDesc
  55. {
  56. get { return modelDesc; }
  57. set { modelDesc = value; }
  58. }
  59. private string stdName;
  60. [Description("标准名称")]
  61. public string StdName
  62. {
  63. get { return stdName; }
  64. set { stdName = value; }
  65. }
  66. private string specName;
  67. [Description("产品规格")]
  68. public string SpecName
  69. {
  70. get { return specName; }
  71. set { specName = value; }
  72. }
  73. private string createTime;
  74. [Description("入库时间")]
  75. public string CreateTime
  76. {
  77. get { return createTime; }
  78. set { createTime = value; }
  79. }
  80. private double? actCount;
  81. [Description("支")]
  82. public double? ActCount
  83. {
  84. get { return actCount; }
  85. set { actCount = value; }
  86. }
  87. private double? actWeight;
  88. [Description("吨")]
  89. public double? ActWeight
  90. {
  91. get { return actWeight; }
  92. set { actWeight = value; }
  93. }
  94. private double? billCount;
  95. [Description("支")]
  96. public double? BillCount
  97. {
  98. get { return billCount; }
  99. set { billCount = value; }
  100. }
  101. private double? billWeight;
  102. [Description("吨")]
  103. public double? BillWeight
  104. {
  105. get { return billWeight; }
  106. set { billWeight = value; }
  107. }
  108. private double? tallCount;
  109. [Description("支")]
  110. public double? TallCount
  111. {
  112. get { return tallCount; }
  113. set { tallCount = value; }
  114. }
  115. private double? tallWeight;
  116. [Description("吨")]
  117. public double? TallWeight
  118. {
  119. get { return tallWeight; }
  120. set { tallWeight = value; }
  121. }
  122. private double? loadCount;
  123. [Description("支")]
  124. public double? LoadCount
  125. {
  126. get { return loadCount; }
  127. set { loadCount = value; }
  128. }
  129. private double? loadWeight;
  130. [Description("吨")]
  131. public double? LoadWeight
  132. {
  133. get { return loadWeight; }
  134. set { loadWeight = value; }
  135. }
  136. private double? onBillCount;
  137. [Description("支")]
  138. public double? OnBillCount
  139. {
  140. get { return onBillCount; }
  141. set { onBillCount = value; }
  142. }
  143. private double? onBillWeight;
  144. [Description("吨")]
  145. public double? OnBillWeight
  146. {
  147. get { return onBillWeight; }
  148. set { onBillWeight = value; }
  149. }
  150. private double? onTallCount;
  151. [Description("支")]
  152. public double? OnTallCount
  153. {
  154. get { return onTallCount; }
  155. set { onTallCount = value; }
  156. }
  157. private double? onTallWeight;
  158. [Description("吨")]
  159. public double? OnTallWeight
  160. {
  161. get { return onTallWeight; }
  162. set { onTallWeight = value; }
  163. }
  164. }
  165. }