MaterialChooseEntity.cs 4.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162
  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.PlnSaleOrd.炉计划.Entity
  7. {
  8. public class MaterialChooseEntity
  9. {
  10. private string materialNo="";
  11. [Description("物料编码")]
  12. public string MaterialNo
  13. {
  14. get { return materialNo; }
  15. set { materialNo = value; }
  16. }
  17. private string materialName = "";
  18. [Description("物料描述")]
  19. public string MaterialName
  20. {
  21. get { return materialName; }
  22. set { materialName = value; }
  23. }
  24. private string storageNo = "";
  25. [Description("仓库代码")]
  26. public string StorageNo
  27. {
  28. get { return storageNo; }
  29. set { storageNo = value; }
  30. }
  31. private string storageName = "";
  32. [Description("仓库")]
  33. public string StorageName
  34. {
  35. get { return storageName; }
  36. set { storageName = value; }
  37. }
  38. private string proPlanId = "";
  39. [Description("订单编号")]
  40. public string ProPlanId
  41. {
  42. get { return proPlanId; }
  43. set { proPlanId = value; }
  44. }
  45. private string gxPlanNo = "";
  46. [Description("排产序号")]
  47. public string GxPlanNo
  48. {
  49. get { return gxPlanNo; }
  50. set { gxPlanNo = value; }
  51. }
  52. private string judgeStoveNo = "";
  53. [Description("炉号")]
  54. public string JudgeStoveNo
  55. {
  56. get { return judgeStoveNo; }
  57. set { judgeStoveNo = value; }
  58. }
  59. private string batchNo = "";
  60. [Description("批号")]
  61. public string BatchNo
  62. {
  63. get { return batchNo; }
  64. set { batchNo = value; }
  65. }
  66. private string batchGroudNo = "";
  67. [Description("组号")]
  68. public string BatchGroudNo
  69. {
  70. get { return batchGroudNo; }
  71. set { batchGroudNo = value; }
  72. }
  73. private string gradecode = "";
  74. [Description("钢种代码")]
  75. public string Gradecode
  76. {
  77. get { return gradecode; }
  78. set { gradecode = value; }
  79. }
  80. private string gradename = "";
  81. [Description("钢种名称")]
  82. public string Gradename
  83. {
  84. get { return gradename; }
  85. set { gradename = value; }
  86. }
  87. private decimal? actDimater;
  88. [Description("外径")]
  89. public decimal? ActDimater
  90. {
  91. get { return actDimater; }
  92. set { actDimater = value; }
  93. }
  94. private decimal? actHeight;
  95. [Description("壁厚")]
  96. public decimal? ActHeight
  97. {
  98. get { return actHeight; }
  99. set { actHeight = value; }
  100. }
  101. private decimal? actLen;
  102. [Description("长度")]
  103. public decimal? ActLen
  104. {
  105. get { return actLen; }
  106. set { actLen = value; }
  107. }
  108. private decimal? actLenMin;
  109. [Description("长度下限")]
  110. public decimal? ActLenMin
  111. {
  112. get { return actLenMin; }
  113. set { actLenMin = value; }
  114. }
  115. private decimal? actLenMax;
  116. [Description("长度上限")]
  117. public decimal? ActLenMax
  118. {
  119. get { return actLenMax; }
  120. set { actLenMax = value; }
  121. }
  122. private decimal? actCount;
  123. [Description("支数")]
  124. public decimal? ActCount
  125. {
  126. get { return actCount; }
  127. set { actCount = value; }
  128. }
  129. private decimal? actWeight;
  130. [Description("重量")]
  131. public decimal? ActWeight
  132. {
  133. get { return actWeight; }
  134. set { actWeight = value; }
  135. }
  136. private string heatPlanNo = "";
  137. [Description("炉次计划号")]
  138. public string HeatPlanNo
  139. {
  140. get { return heatPlanNo; }
  141. set { heatPlanNo = value; }
  142. }
  143. private string productFlag = "";
  144. [Description("材料类别")]
  145. public string ProductFlag
  146. {
  147. get { return productFlag; }
  148. set { productFlag = value; }
  149. }
  150. private string matStatus = "";
  151. [Description("材料状态")]
  152. public string MatStatus
  153. {
  154. get { return matStatus; }
  155. set { matStatus = value; }
  156. }
  157. }
  158. }