YdmZcBillCyEntity.cs 7.2 KB

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