OrderLineAPriceEntity.cs 5.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using System.ComponentModel;
  6. namespace Core.StlMes.Client.SaleOrder
  7. {
  8. class OrderLineAPriceEntity
  9. {
  10. private String orderSeq;
  11. /// <summary>
  12. /// 合同行号
  13. /// </summary>
  14. [Description("合同行号")]
  15. public String OrderSeq
  16. {
  17. get { return orderSeq; }
  18. set { orderSeq = value; }
  19. }
  20. private String pscDesc;
  21. [Description("订货产品")]
  22. public String PscDesc
  23. {
  24. get { return pscDesc; }
  25. set { pscDesc = value; }
  26. }
  27. private String orderSpecDesc;
  28. /// <summary>
  29. /// 订货规格
  30. /// </summary>
  31. [Description("订货规格")]
  32. public String OrderSpecDesc
  33. {
  34. get { return orderSpecDesc; }
  35. set { orderSpecDesc = value; }
  36. }
  37. private String specName;
  38. /// <summary>
  39. /// 产品规格
  40. /// </summary>
  41. [Description("产品规格")]
  42. public String SpecName
  43. {
  44. get { return specName; }
  45. set { specName = value; }
  46. }
  47. private String lenDesc;
  48. /// <summary>
  49. /// 长度
  50. /// </summary>
  51. [Description("长度")]
  52. public String LenDesc
  53. {
  54. get { return lenDesc; }
  55. set { lenDesc = value; }
  56. }
  57. private String orderQty;
  58. /// <summary>
  59. /// 订货量
  60. /// </summary>
  61. [Description("订货量")]
  62. public String OrderQty
  63. {
  64. get { return orderQty; }
  65. set { orderQty = value; }
  66. }
  67. private String orderUnit;
  68. /// <summary>
  69. /// 订货单位
  70. /// </summary>
  71. [Description("订货计量单位")]
  72. public String OrderUnit
  73. {
  74. get { return orderUnit; }
  75. set { orderUnit = value; }
  76. }
  77. private String prdctWgt;
  78. /// <summary>
  79. /// 生产吨数
  80. /// </summary>
  81. [Description("生产量(支、吨)")]
  82. public String PrdctWgt
  83. {
  84. get { return prdctWgt; }
  85. set { prdctWgt = value; }
  86. }
  87. private String delvryRangeTpe;
  88. /// <summary>
  89. /// 交货方式
  90. /// </summary>
  91. [Description("交货量差")]
  92. public String DelvryRangeTpe
  93. {
  94. get { return delvryRangeTpe; }
  95. set { delvryRangeTpe = value; }
  96. }
  97. private String modelDesc;
  98. /// <summary>
  99. /// 扣型
  100. /// </summary>
  101. [Description("扣型")]
  102. public String ModelDesc
  103. {
  104. get { return modelDesc; }
  105. set { modelDesc = value; }
  106. }
  107. private String outPrice;
  108. /// <summary>
  109. /// 出厂价
  110. /// </summary>
  111. [Description("出厂价")]
  112. public String OutPrice
  113. {
  114. get { return outPrice; }
  115. set { outPrice = value; }
  116. }
  117. private String blaPrice;
  118. /// <summary>
  119. /// 结算价
  120. /// </summary>
  121. [Description("结算价")]
  122. public String BlaPrice
  123. {
  124. get { return blaPrice; }
  125. set { blaPrice = value; }
  126. }
  127. private String trsPrice;
  128. /// <summary>
  129. /// 运费
  130. /// </summary>
  131. [Description("运费")]
  132. public String TrsPrice
  133. {
  134. get { return trsPrice; }
  135. set { trsPrice = value; }
  136. }
  137. private String pakPrice;
  138. /// <summary>
  139. /// 吊装费
  140. /// </summary>
  141. [Description("吊装费")]
  142. public String PakPrice
  143. {
  144. get { return pakPrice; }
  145. set { pakPrice = value; }
  146. }
  147. private String tonPrice;
  148. /// <summary>
  149. /// 吨价
  150. /// </summary>
  151. [Description("吨价")]
  152. public String TonPrice
  153. {
  154. get { return tonPrice; }
  155. set { tonPrice = value; }
  156. }
  157. private String orderThBc;
  158. /// <summary>
  159. /// 半成品管理号
  160. /// </summary>
  161. [Description("半成品管理号")]
  162. public String OrderThBc
  163. {
  164. get { return orderThBc; }
  165. set { orderThBc = value; }
  166. }
  167. private String orderThBcPrice;
  168. /// <summary>
  169. /// 半成品价格
  170. /// </summary>
  171. [Description("半成品价格")]
  172. public String OrderThBcPrice
  173. {
  174. get { return orderThBcPrice; }
  175. set { orderThBcPrice = value; }
  176. }
  177. private String keepType;
  178. /// <summary>
  179. /// 保价类型
  180. /// </summary>
  181. [Description("保价类型")]
  182. public String KeepType
  183. {
  184. get { return keepType; }
  185. set { keepType = value; }
  186. }
  187. private String ddzy;
  188. /// <summary>
  189. /// 吊带装运
  190. /// </summary>
  191. ///
  192. [Description("吊带装运")]
  193. public String Ddzy
  194. {
  195. get { return ddzy; }
  196. set { ddzy = value; }
  197. }
  198. }
  199. }