CraftOrdDesignEntityChoiceCraftLv2.cs 5.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207
  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.SaleOrder
  7. {
  8. public class CraftOrdDesignEntityChoiceCraftLv2 : CraftOrdDesignEntity
  9. {
  10. private string pscDesc = "";
  11. [Description("订货产品描述")]
  12. public string PscDesc
  13. {
  14. get { return pscDesc; }
  15. set { pscDesc = value; }
  16. }
  17. private string dimater = "";
  18. [Description("外径")]
  19. public string Dimater
  20. {
  21. get { return dimater; }
  22. set { dimater = value; }
  23. }
  24. private string height = "";
  25. [Description("壁厚")]
  26. public string Height
  27. {
  28. get { return height; }
  29. set { height = value; }
  30. }
  31. private string specName = "";
  32. [Description("产品规格")]
  33. public string SpecName
  34. {
  35. get { return specName; }
  36. set { specName = value; }
  37. }
  38. private string orderSpecDesc = "";
  39. [Description("订货规格")]
  40. public string OrderSpecDesc
  41. {
  42. get { return orderSpecDesc; }
  43. set { orderSpecDesc = value; }
  44. }
  45. private string modelDesc = "";
  46. [Description("扣型描述")]
  47. public string ModelDesc
  48. {
  49. get { return modelDesc; }
  50. set { modelDesc = value; }
  51. }
  52. private string orderSpecialDesc = "";
  53. [Description("产品特殊要求")]
  54. public string OrderSpecialDesc
  55. {
  56. get { return orderSpecialDesc; }
  57. set { orderSpecialDesc = value; }
  58. }
  59. private string descriptionDiff = "";
  60. [Description("合同附加项A")]
  61. public string DescriptionDiff
  62. {
  63. get { return descriptionDiff; }
  64. set { descriptionDiff = value; }
  65. }
  66. private string descriptionAll = "";
  67. [Description("合同附加项")]
  68. public string DescriptionAll
  69. {
  70. get { return descriptionAll; }
  71. set { descriptionAll = value; }
  72. }
  73. private string chgeVal = "";
  74. [Description("合同变更内控")]
  75. public string ChgeVal
  76. {
  77. get { return chgeVal; }
  78. set { chgeVal = value; }
  79. }
  80. private string lenDesc = "";
  81. [Description("长度描述")]
  82. public string LenDesc
  83. {
  84. get { return lenDesc; }
  85. set { lenDesc = value; }
  86. }
  87. private string finalUserDesc = "";
  88. [Description("最终用户描述")]
  89. public string FinalUserDesc
  90. {
  91. get { return finalUserDesc; }
  92. set { finalUserDesc = value; }
  93. }
  94. private string manInspection = "";
  95. [Description("机探盲区")]
  96. public string ManInspection
  97. {
  98. get { return manInspection; }
  99. set { manInspection = value; }
  100. }
  101. private string inspectionValue = "";
  102. [Description("机探盲区切长")]
  103. public string InspectionValue
  104. {
  105. get { return inspectionValue; }
  106. set { inspectionValue = value; }
  107. }
  108. private string outsBilletFl = "";
  109. [Description("外购坯")]
  110. public string OutsBilletFl
  111. {
  112. get { return outsBilletFl; }
  113. set { outsBilletFl = value; }
  114. }
  115. private string outsStlPipeFl = "";
  116. [Description("外购管")]
  117. public string OutsStlPipeFl
  118. {
  119. get { return outsStlPipeFl; }
  120. set { outsStlPipeFl = value; }
  121. }
  122. private string asselFl = "";
  123. [Description("ASSEL")]
  124. public string AsselFl
  125. {
  126. get { return asselFl; }
  127. set { asselFl = value; }
  128. }
  129. private string producerFl = "";
  130. [Description("监制")]
  131. public string ProducerFl
  132. {
  133. get { return producerFl; }
  134. set { producerFl = value; }
  135. }
  136. private string planTimeBZg = "";
  137. [Description("轧制开始时间")]
  138. public string PlanTimeBZg
  139. {
  140. get { return planTimeBZg; }
  141. set { planTimeBZg = value; }
  142. }
  143. private string planTimeBDbk = "";
  144. [Description("镦拔扩开始时间")]
  145. public string PlanTimeBDbk
  146. {
  147. get { return planTimeBDbk; }
  148. set { planTimeBDbk = value; }
  149. }
  150. private string planTimeBRcl = "";
  151. [Description("热处理开始时间")]
  152. public string PlanTimeBRcl
  153. {
  154. get { return planTimeBRcl; }
  155. set { planTimeBRcl = value; }
  156. }
  157. private string planTimeBJgx = "";
  158. [Description("加工开始时间")]
  159. public string PlanTimeBJgx
  160. {
  161. get { return planTimeBJgx; }
  162. set { planTimeBJgx = value; }
  163. }
  164. private string planTImeBProp = "";
  165. [Description("接箍加工开始时间")]
  166. public string PlanTImeBProp
  167. {
  168. get { return planTImeBProp; }
  169. set { planTImeBProp = value; }
  170. }
  171. private string modelCode = "";
  172. [Description("扣型代码")]
  173. public string ModelCode
  174. {
  175. get { return modelCode; }
  176. set { modelCode = value; }
  177. }
  178. }
  179. }