MatInfoEntity.cs 9.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using System.ComponentModel;
  6. namespace com.steering.pss.ydm.entity
  7. {
  8. public class MatInfoEntity
  9. {
  10. private string judgeResultTime;
  11. [Description("入库时间")]
  12. public string JudgeResultTime
  13. {
  14. get { return judgeResultTime; }
  15. set { judgeResultTime = value; }
  16. }
  17. private string judgeStoveNo;
  18. [Description("炉号")]
  19. public string JudgeStoveNo
  20. {
  21. get { return judgeStoveNo; }
  22. set { judgeStoveNo = value; }
  23. }
  24. private string batchNo;
  25. [Description("批号")]
  26. public string BatchNo
  27. {
  28. get { return batchNo; }
  29. set { batchNo = value; }
  30. }
  31. private string batchGroudNo;
  32. [Description("组号")]
  33. public string BatchGroudNo
  34. {
  35. get { return batchGroudNo; }
  36. set { batchGroudNo = value; }
  37. }
  38. private string storageNo;
  39. [Description("仓库号代码")]
  40. public string StorageNo
  41. {
  42. get { return storageNo; }
  43. set { storageNo = value; }
  44. }
  45. private string storageName;
  46. [Description("出库地点")]
  47. public string StorageName
  48. {
  49. get { return storageName; }
  50. set { storageName = value; }
  51. }
  52. private string vstel;
  53. [Description("装车地点")]
  54. public string Vstel
  55. {
  56. get { return vstel; }
  57. set { vstel = value; }
  58. }
  59. private string vstelDesc;
  60. public string VstelDesc
  61. {
  62. get { return vstelDesc; }
  63. set { vstelDesc = value; }
  64. }
  65. private string boundNum;
  66. [Description("捆数")]
  67. public string BoundNum
  68. {
  69. get { return boundNum; }
  70. set { boundNum = value; }
  71. }
  72. //private string VstelDesc;
  73. private string locationNo;
  74. [Description("料位号")]
  75. public string LocationNo
  76. {
  77. get { return locationNo; }
  78. set { locationNo = value; }
  79. }
  80. private string locationName;
  81. [Description("料位")]
  82. public string LocationName
  83. {
  84. get { return locationName; }
  85. set { locationName = 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 produccode;
  102. [Description("品名代码")]
  103. public string Produccode
  104. {
  105. get { return produccode; }
  106. set { produccode = value; }
  107. }
  108. private string producname;
  109. [Description("品名")]
  110. public string Producname
  111. {
  112. get { return producname; }
  113. set { producname = value; }
  114. }
  115. private string stdCode;
  116. [Description("标准代码")]
  117. public string StdCode
  118. {
  119. get { return stdCode; }
  120. set { stdCode = value; }
  121. }
  122. private string stdName;
  123. [Description("标准名称")]
  124. public string StdName
  125. {
  126. get { return stdName; }
  127. set { stdName = value; }
  128. }
  129. private string stdStyle;
  130. [Description("标准类别代码")]
  131. public string StdStyle
  132. {
  133. get { return stdStyle; }
  134. set { stdStyle = value; }
  135. }
  136. private string stdStyleDesc;
  137. [Description("标准类别")]
  138. public string StdStyleDesc
  139. {
  140. get { return stdStyleDesc; }
  141. set { stdStyleDesc = 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 modelCode;
  158. [Description("扣型代码")]
  159. public string ModelCode
  160. {
  161. get { return modelCode; }
  162. set { modelCode = value; }
  163. }
  164. private string modelDesc;
  165. [Description("扣型")]
  166. public string ModelDesc
  167. {
  168. get { return modelDesc; }
  169. set { modelDesc = value; }
  170. }
  171. private object actCount;
  172. [Description("支")]
  173. public object 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 actLen;
  186. [Description("长度")]
  187. public string ActLen
  188. {
  189. get { return actLen; }
  190. set { actLen = value; }
  191. }
  192. private string ybCount;
  193. [Description("支")]
  194. public string YbCount
  195. {
  196. get { return ybCount; }
  197. set { ybCount = value; }
  198. }
  199. private string ybWeight;
  200. [Description("吨")]
  201. public string YbWeight
  202. {
  203. get { return ybWeight; }
  204. set { ybWeight = value; }
  205. }
  206. private string ybLen;
  207. [Description("长度")]
  208. public string YbLen
  209. {
  210. get { return ybLen; }
  211. set { ybLen = value; }
  212. }
  213. private string kcCount;
  214. [Description("支")]
  215. public string KcCount
  216. {
  217. get { return kcCount; }
  218. set { kcCount = value; }
  219. }
  220. private string kcWeight;
  221. [Description("吨")]
  222. public string KcWeight
  223. {
  224. get { return kcWeight; }
  225. set { kcWeight = value; }
  226. }
  227. private string kcLen;
  228. [Description("长度")]
  229. public string KcLen
  230. {
  231. get { return kcLen; }
  232. set { kcLen = value; }
  233. }
  234. private string ordPk;
  235. public string OrdPk
  236. {
  237. get { return ordPk; }
  238. set { ordPk = value; }
  239. }
  240. private string ordLnPk;
  241. public string OrdLnPk
  242. {
  243. get { return ordLnPk; }
  244. set { ordLnPk = value; }
  245. }
  246. private string ordLnDlyPk;
  247. public string OrdLnDlyPk
  248. {
  249. get { return ordLnDlyPk; }
  250. set { ordLnDlyPk = value; }
  251. }
  252. private string actLenMax;
  253. [Description("上限")]
  254. public string ActLenMax
  255. {
  256. get { return actLenMax; }
  257. set { actLenMax = value; }
  258. }
  259. private string actLenMin;
  260. [Description("下限")]
  261. public string ActLenMin
  262. {
  263. get { return actLenMin; }
  264. set { actLenMin = value; }
  265. }
  266. private string sendNum;
  267. [Description("实发数")]
  268. public string SendNum
  269. {
  270. get { return sendNum; }
  271. set { sendNum = value; }
  272. }
  273. private string finishproMold;
  274. [Description("成品区分")]
  275. public string FinishproMold
  276. {
  277. get { return finishproMold; }
  278. set { finishproMold = value; }
  279. }
  280. private string inMold;
  281. [Description("入库区分")]
  282. public string InMold
  283. {
  284. get { return inMold; }
  285. set { inMold = value; }
  286. }
  287. private string memo;
  288. [Description("备注")]
  289. public string Memo
  290. {
  291. get { return memo; }
  292. set { memo = value; }
  293. }
  294. private string plineName = "";
  295. [Description("产线")]
  296. public string PlineName
  297. {
  298. get { return plineName; }
  299. set { plineName = value; }
  300. }
  301. private string plineCode = "";
  302. [Description("产线代码")]
  303. public string PlineCode
  304. {
  305. get { return plineCode; }
  306. set { plineCode = value; }
  307. }
  308. private string zbsFlag = "";
  309. [Description("质保书来源")]
  310. public string ZbsFlag
  311. {
  312. get { return zbsFlag; }
  313. set { zbsFlag = value; }
  314. }
  315. private string judgeResultCode = "";
  316. [Description("综合判定结果")]
  317. public string JudgeResultCode
  318. {
  319. get { return judgeResultCode; }
  320. set { judgeResultCode = value; }
  321. }
  322. private string measuringSeq;
  323. [Description("喷印管号")]
  324. public string MeasuringSeq
  325. {
  326. get { return measuringSeq; }
  327. set { measuringSeq = value; }
  328. }
  329. private string matNo;
  330. [Description("材料号")]
  331. public string MatNo
  332. {
  333. get { return matNo; }
  334. set { matNo = value; }
  335. }
  336. }
  337. }