YdmZcBillCyEntity.cs 7.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284
  1. using System.ComponentModel;
  2. namespace Core.StlMes.Client.Judge.ViewModels
  3. {
  4. public class YdmZcBillCyEntity
  5. {
  6. private string billNo;
  7. [Description("提单号")]
  8. public string BillNo
  9. {
  10. get { return billNo; }
  11. set { billNo = value; }
  12. }
  13. private string sendNum;
  14. [Description("实发数")]
  15. public string SendNum
  16. {
  17. get { return sendNum; }
  18. set { sendNum = value; }
  19. }
  20. private string prtFlag;
  21. [Description("是否过磅")]
  22. public string PrtFlag
  23. {
  24. get { return prtFlag; }
  25. set { prtFlag = value; }
  26. }
  27. private string orderUnit;
  28. [Description("计量单位")]
  29. public string OrderUnit
  30. {
  31. get { return orderUnit; }
  32. set { orderUnit = value; }
  33. }
  34. private string ordLnDlyPk;
  35. [Description("合同行主键")]
  36. public string OrdLnDlyPk
  37. {
  38. get { return ordLnDlyPk; }
  39. set { ordLnDlyPk = value; }
  40. }
  41. private string ordLnPk;
  42. [Description("交货行主键")]
  43. public string OrdLnPk
  44. {
  45. get { return ordLnPk; }
  46. set { ordLnPk = value; }
  47. }
  48. private string judgeStoveNo;
  49. [Description("炉号")]
  50. public string JudgeStoveNo
  51. {
  52. get { return judgeStoveNo; }
  53. set { judgeStoveNo = value; }
  54. }
  55. private string batchNo;
  56. [Description("批号")]
  57. public string BatchNo
  58. {
  59. get { return batchNo; }
  60. set { batchNo = value; }
  61. }
  62. private string groupNo;
  63. [Description("组号")]
  64. public string GroupNo
  65. {
  66. get { return groupNo; }
  67. set { groupNo = value; }
  68. }
  69. private string produccode;
  70. [Description("品名代码")]
  71. public string Produccode
  72. {
  73. get { return produccode; }
  74. set { produccode = value; }
  75. }
  76. private string producname;
  77. [Description("品名")]
  78. public string Producname
  79. {
  80. get { return producname; }
  81. set { producname = value; }
  82. }
  83. private string steelcode;
  84. [Description("钢级代码")]
  85. public string Steelcode
  86. {
  87. get { return steelcode; }
  88. set { steelcode = value; }
  89. }
  90. private string steelname;
  91. [Description("钢级牌号")]
  92. public string Steelname
  93. {
  94. get { return steelname; }
  95. set { steelname = value; }
  96. }
  97. private string stdCode;
  98. [Description("标准代码")]
  99. public string StdCode
  100. {
  101. get { return stdCode; }
  102. set { stdCode = value; }
  103. }
  104. private string stdName;
  105. [Description("标准名称")]
  106. public string StdName
  107. {
  108. get { return stdName; }
  109. set { stdName = value; }
  110. }
  111. private string stdStyle;
  112. [Description("标准类别代码")]
  113. public string StdStyle
  114. {
  115. get { return stdStyle; }
  116. set { stdStyle = value; }
  117. }
  118. private string stdStyleDesc;
  119. [Description("标准类别")]
  120. public string StdStyleDesc
  121. {
  122. get { return stdStyleDesc; }
  123. set { stdStyleDesc = value; }
  124. }
  125. private string modelCode;
  126. [Description("扣型代码")]
  127. public string ModelCode
  128. {
  129. get { return modelCode; }
  130. set { modelCode = value; }
  131. }
  132. private string modelDesc;
  133. [Description("扣型")]
  134. public string ModelDesc
  135. {
  136. get { return modelDesc; }
  137. set { modelDesc = value; }
  138. }
  139. private string specCode;
  140. [Description("规格代码")]
  141. public string SpecCode
  142. {
  143. get { return specCode; }
  144. set { specCode = value; }
  145. }
  146. private string specName;
  147. [Description("产品规格")]
  148. public string SpecName
  149. {
  150. get { return specName; }
  151. set { specName = value; }
  152. }
  153. private string actLenMin;
  154. [Description("下限")]
  155. public string ActLenMin
  156. {
  157. get { return actLenMin; }
  158. set { actLenMin = value; }
  159. }
  160. private string actLenMax;
  161. [Description("上限")]
  162. public string ActLenMax
  163. {
  164. get { return actLenMax; }
  165. set { actLenMax = value; }
  166. }
  167. private string actCount;
  168. [Description("支")]
  169. public string ActCount
  170. {
  171. get { return actCount; }
  172. set { actCount = value; }
  173. }
  174. private string actWeight;
  175. [Description("吨")]
  176. public string ActWeight
  177. {
  178. get { return actWeight; }
  179. set { actWeight = value; }
  180. }
  181. private string actCountLoad;
  182. [Description("支")]
  183. public string ActCountLoad
  184. {
  185. get { return actCountLoad; }
  186. set { actCountLoad = value; }
  187. }
  188. private string actWeightLoad;
  189. [Description("吨")]
  190. public string ActWeightLoad
  191. {
  192. get { return actWeightLoad; }
  193. set { actWeightLoad = value; }
  194. }
  195. private string actCountKc;
  196. [Description("支")]
  197. public string ActCountKc
  198. {
  199. get { return actCountKc; }
  200. set { actCountKc = value; }
  201. }
  202. private string actWeightKc;
  203. [Description("吨")]
  204. public string ActWeightKc
  205. {
  206. get { return actWeightKc; }
  207. set { actWeightKc = value; }
  208. }
  209. private string actCountSd;
  210. [Description("支")]
  211. public string ActCountSd
  212. {
  213. get { return actCountSd; }
  214. set { actCountSd = value; }
  215. }
  216. private string actWeightSd;
  217. [Description("吨")]
  218. public string ActWeightSd
  219. {
  220. get { return actWeightSd; }
  221. set { actWeightSd = value; }
  222. }
  223. private string actCountZy;
  224. [Description("支")]
  225. public string ActCountZy
  226. {
  227. get { return actCountZy; }
  228. set { actCountZy = value; }
  229. }
  230. private string actWeightZy;
  231. [Description("吨")]
  232. public string ActWeightZy
  233. {
  234. get { return actWeightZy; }
  235. set { actWeightZy = value; }
  236. }
  237. private string actWeightPost;
  238. [Description("发运量差")]
  239. public string ActWeightPost
  240. {
  241. get { return actWeightPost; }
  242. set { actWeightPost = value; }
  243. }
  244. private string actTallCount;
  245. [Description("支")]
  246. public string ActTallCount
  247. {
  248. get { return actTallCount; }
  249. set { actTallCount = value; }
  250. }
  251. private string actTallWt;
  252. [Description("吨")]
  253. public string ActTallWt
  254. {
  255. get { return actTallWt; }
  256. set { actTallWt = value; }
  257. }
  258. }
  259. }