MatZcMEntity.cs 19 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724
  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 MatZcMEntity
  9. {
  10. private String plineCode;
  11. [Description("产线代码")]
  12. public String PlineCode
  13. {
  14. get { return plineCode; }
  15. set { plineCode = value; }
  16. }
  17. private String modelCode;
  18. [Description("扣型代码")]
  19. public String ModelCode
  20. {
  21. get { return modelCode; }
  22. set { modelCode = value; }
  23. }
  24. private String modelDesc;
  25. [Description("扣型")]
  26. public String ModelDesc
  27. {
  28. get { return modelDesc; }
  29. set { modelDesc = value; }
  30. }
  31. private String stdStyle;
  32. [Description("标准类别代码")]
  33. public String StdStyle
  34. {
  35. get { return stdStyle; }
  36. set { stdStyle = value; }
  37. }
  38. private String stdStyleDesc;
  39. [Description("标准类别")]
  40. public String StdStyleDesc
  41. {
  42. get { return stdStyleDesc; }
  43. set { stdStyleDesc = value; }
  44. }
  45. private String belongCode;
  46. [Description("销售组织代码")]
  47. public String BelongCode
  48. {
  49. get { return belongCode; }
  50. set { belongCode = value; }
  51. }
  52. private String belongName;
  53. [Description("销售组织")]
  54. public String BelongName
  55. {
  56. get { return belongName; }
  57. set { belongName = value; }
  58. }
  59. private String judgeStoveNo;
  60. [Description("炉号")]
  61. public String JudgeStoveNo
  62. {
  63. get { return judgeStoveNo; }
  64. set { judgeStoveNo = value; }
  65. }
  66. private String stoveNo;
  67. [Description("熔炼炉号")]
  68. public String StoveNo
  69. {
  70. get { return stoveNo; }
  71. set { stoveNo = value; }
  72. }
  73. private String batchNo;
  74. [Description("批号")]
  75. public String BatchNo
  76. {
  77. get { return batchNo; }
  78. set { batchNo = value; }
  79. }
  80. private String batchGroudNo;
  81. [Description("组号")]
  82. public String BatchGroudNo
  83. {
  84. get { return batchGroudNo; }
  85. set { batchGroudNo = value; }
  86. }
  87. private String productFlag;
  88. [Description("材料类别")]
  89. public String ProductFlag
  90. {
  91. get { return productFlag; }
  92. set { productFlag = value; }
  93. }
  94. private String matStatus;
  95. [Description("材料状态")]
  96. public String MatStatus
  97. {
  98. get { return matStatus; }
  99. set { matStatus = value; }
  100. }
  101. private String specCode;
  102. [Description("规格代码")]
  103. public String SpecCode
  104. {
  105. get { return specCode; }
  106. set { specCode = value; }
  107. }
  108. private String specName;
  109. [Description("规格")]
  110. public String SpecName
  111. {
  112. get { return specName; }
  113. set { specName = value; }
  114. }
  115. private String actDimater;
  116. [Description("外径")]
  117. public String ActDimater
  118. {
  119. get { return actDimater; }
  120. set { actDimater = value; }
  121. }
  122. private String actHeight;
  123. [Description("壁厚")]
  124. public String ActHeight
  125. {
  126. get { return actHeight; }
  127. set { actHeight = value; }
  128. }
  129. private String actLenMin;
  130. [Description("下限")]
  131. public String ActLenMin
  132. {
  133. get { return actLenMin; }
  134. set { actLenMin = value; }
  135. }
  136. private String actLenMax;
  137. [Description("上限")]
  138. public String ActLenMax
  139. {
  140. get { return actLenMax; }
  141. set { actLenMax = value; }
  142. }
  143. private String produccode;
  144. [Description("品名代码")]
  145. public String Produccode
  146. {
  147. get { return produccode; }
  148. set { produccode = value; }
  149. }
  150. private String producname;
  151. [Description("品名")]
  152. public String Producname
  153. {
  154. get { return producname; }
  155. set { producname = value; }
  156. }
  157. private String materialNo;
  158. [Description("物料编码")]
  159. public String MaterialNo
  160. {
  161. get { return materialNo; }
  162. set { materialNo = value; }
  163. }
  164. private String materialName;
  165. [Description("物料")]
  166. public String MaterialName
  167. {
  168. get { return materialName; }
  169. set { materialName = value; }
  170. }
  171. private String steelcode;
  172. [Description("钢级牌号代码")]
  173. public String Steelcode
  174. {
  175. get { return steelcode; }
  176. set { steelcode = value; }
  177. }
  178. private String steelname;
  179. [Description("钢级")]
  180. public String Steelname
  181. {
  182. get { return steelname; }
  183. set { steelname = value; }
  184. }
  185. private String stdCode;
  186. [Description("标准代码")]
  187. public String StdCode
  188. {
  189. get { return stdCode; }
  190. set { stdCode = value; }
  191. }
  192. private String stdName;
  193. [Description("标准名称")]
  194. public String StdName
  195. {
  196. get { return stdName; }
  197. set { stdName = value; }
  198. }
  199. private String orderNo;
  200. [Description("合同号")]
  201. public String OrderNo
  202. {
  203. get { return orderNo; }
  204. set { orderNo = value; }
  205. }
  206. private String orderSeq;
  207. [Description("合同行")]
  208. public String OrderSeq
  209. {
  210. get { return orderSeq; }
  211. set { orderSeq = value; }
  212. }
  213. private String orderSeqNo;
  214. [Description("交货行")]
  215. public String OrderSeqNo
  216. {
  217. get { return orderSeqNo; }
  218. set { orderSeqNo = value; }
  219. }
  220. private String ordPk;
  221. [Description("合同主键")]
  222. public String OrdPk
  223. {
  224. get { return ordPk; }
  225. set { ordPk = value; }
  226. }
  227. private String ordLnPk;
  228. [Description("合同行主键")]
  229. public String OrdLnPk
  230. {
  231. get { return ordLnPk; }
  232. set { ordLnPk = value; }
  233. }
  234. private String ordLnDlyPk;
  235. [Description("交货行主键")]
  236. public String OrdLnDlyPk
  237. {
  238. get { return ordLnDlyPk; }
  239. set { ordLnDlyPk = value; }
  240. }
  241. private String proOrderNo;
  242. [Description("生产合同号")]
  243. public String ProOrderNo
  244. {
  245. get { return proOrderNo; }
  246. set { proOrderNo = value; }
  247. }
  248. private String proOrderId;
  249. [Description("生产订单号")]
  250. public String ProOrderId
  251. {
  252. get { return proOrderId; }
  253. set { proOrderId = value; }
  254. }
  255. private String instockTime;
  256. [Description("入库时间")]
  257. public String InstockTime
  258. {
  259. get { return instockTime; }
  260. set { instockTime = value; }
  261. }
  262. private String storageNo;
  263. [Description("仓库号编码")]
  264. public String StorageNo
  265. {
  266. get { return storageNo; }
  267. set { storageNo = value; }
  268. }
  269. private String storageName;
  270. [Description("仓库名称")]
  271. public String StorageName
  272. {
  273. get { return storageName; }
  274. set { storageName = value; }
  275. }
  276. private String locationNo;
  277. [Description("料位编码")]
  278. public String LocationNo
  279. {
  280. get { return locationNo; }
  281. set { locationNo = value; }
  282. }
  283. private String locationName;
  284. [Description("料位")]
  285. public String LocationName
  286. {
  287. get { return locationName; }
  288. set { locationName = value; }
  289. }
  290. private double? actLen;
  291. [Description("长度")]
  292. public double? ActLen
  293. {
  294. get { return actLen; }
  295. set { actLen = value; }
  296. }
  297. private double? actCount;
  298. [Description("支数")]
  299. public double? ActCount
  300. {
  301. get { return actCount; }
  302. set { actCount = value; }
  303. }
  304. private double? lkactCount;
  305. [Description("利库支数")]
  306. public double? LkactCount
  307. {
  308. get { return lkactCount; }
  309. set { lkactCount = value; }
  310. }
  311. private double? tdactCount;
  312. [Description("脱单支数")]
  313. public double? TdactCount
  314. {
  315. get { return tdactCount; }
  316. set { tdactCount = value; }
  317. }
  318. private double? gpactCount;
  319. [Description("改判支数")]
  320. public double? GpactCount
  321. {
  322. get { return gpactCount; }
  323. set { gpactCount = value; }
  324. }
  325. private double? actWeight;
  326. [Description("实重(t)")]
  327. public double? ActWeight
  328. {
  329. get { return actWeight; }
  330. set { actWeight = value; }
  331. }
  332. private double? ponderGrossWt;
  333. [Description("过磅量(t)")]
  334. public double? PonderGrossWt
  335. {
  336. get { return ponderGrossWt; }
  337. set { ponderGrossWt = value; }
  338. }
  339. private double? actTheoryWight;
  340. [Description("理重(t)")]
  341. public double? ActTheoryWight
  342. {
  343. get { return actTheoryWight; }
  344. set { actTheoryWight = value; }
  345. }
  346. private String memo;
  347. [Description("备注")]
  348. public String Memo
  349. {
  350. get { return memo; }
  351. set { memo = value; }
  352. }
  353. private String judgeResultCode;
  354. [Description("综合判定结果代码")]
  355. public String JudgeResultCode
  356. {
  357. get { return judgeResultCode; }
  358. set { judgeResultCode = value; }
  359. }
  360. private String judgeResult;
  361. [Description("综合判定结果")]
  362. public String JudgeResult
  363. {
  364. get { return judgeResult; }
  365. set { judgeResult = value; }
  366. }
  367. private String judgeStdName;
  368. [Description("判定标准")]
  369. public String JudgeStdName
  370. {
  371. get { return judgeStdName; }
  372. set { judgeStdName = value; }
  373. }
  374. private String pipmemo;
  375. [Description("入库备注")]
  376. public String Pipmemo
  377. {
  378. get { return pipmemo; }
  379. set { pipmemo = value; }
  380. }
  381. /// <summary>
  382. /// 质量封锁标志(0未封锁、2质量封锁)
  383. /// </summary>
  384. private object lockFlag;
  385. /// <summary>
  386. /// 质量封锁标志(0未封锁、2质量封锁)
  387. /// </summary>
  388. [Description("质量封锁标志")]
  389. public object LockFlag
  390. {
  391. get { return lockFlag; }
  392. set
  393. {
  394. if (value == null)
  395. {
  396. lockFlag = DBNull.Value;
  397. }
  398. else
  399. {
  400. lockFlag = value;
  401. }
  402. }
  403. }
  404. /// <summary>
  405. /// 管理封锁标志(0未封锁、1管理封锁)
  406. /// </summary>
  407. private object mngLockFlag;
  408. [Description("管理封锁标志")]
  409. public object MngLockFlag
  410. {
  411. get { return mngLockFlag; }
  412. set
  413. {
  414. if (value == null)
  415. {
  416. mngLockFlag = DBNull.Value;
  417. }
  418. else
  419. {
  420. mngLockFlag = value;
  421. }
  422. }
  423. }
  424. private object proNo;
  425. [Description("操作单号")]
  426. public object ProNo
  427. {
  428. get { return proNo; }
  429. set
  430. {
  431. if (value == null)
  432. {
  433. proNo = DBNull.Value;
  434. }
  435. else
  436. {
  437. proNo = value;
  438. }
  439. }
  440. }
  441. private object lockLiku;
  442. [Description("审核状态")]
  443. public object LockLiku
  444. {
  445. get { return lockLiku; }
  446. set
  447. {
  448. if (value == null)
  449. {
  450. lockLiku = DBNull.Value;
  451. }
  452. else
  453. {
  454. lockLiku = value;
  455. }
  456. }
  457. }
  458. private object inMold;
  459. [Description("入库区分")]
  460. public object InMold
  461. {
  462. get { return inMold; }
  463. set
  464. {
  465. if (value == null)
  466. {
  467. inMold = DBNull.Value;
  468. }
  469. else
  470. {
  471. inMold = value;
  472. }
  473. }
  474. }
  475. private object balYearMonth;
  476. [Description("结转年月")]
  477. public object BalYearMonth
  478. {
  479. get { return balYearMonth; }
  480. set
  481. {
  482. if (value == null)
  483. {
  484. balYearMonth = DBNull.Value;
  485. }
  486. else
  487. {
  488. balYearMonth = value;
  489. }
  490. }
  491. }
  492. private object createName;
  493. [Description("创建人")]
  494. public object CreateName
  495. {
  496. get { return createName; }
  497. set
  498. {
  499. if (value == null)
  500. {
  501. createName = DBNull.Value;
  502. }
  503. else
  504. {
  505. createName = value;
  506. }
  507. }
  508. }
  509. private object createTime;
  510. [Description("创建时间")]
  511. public object CreateTime
  512. {
  513. get { return createTime; }
  514. set
  515. {
  516. if (value == null)
  517. {
  518. createTime = DBNull.Value;
  519. }
  520. else
  521. {
  522. createTime = value;
  523. }
  524. }
  525. }
  526. private object managementNo;
  527. [Description("科室代码")]
  528. public object ManagementNo
  529. {
  530. get { return managementNo; }
  531. set
  532. {
  533. if (value == null)
  534. {
  535. managementNo = DBNull.Value;
  536. }
  537. else
  538. {
  539. managementNo = value;
  540. }
  541. }
  542. }
  543. private object managementName;
  544. [Description("科室名称")]
  545. public object ManagementName
  546. {
  547. get { return managementName; }
  548. set
  549. {
  550. if (value == null)
  551. {
  552. managementName = DBNull.Value;
  553. }
  554. else
  555. {
  556. managementName = value;
  557. }
  558. }
  559. }
  560. private object departmentCode;
  561. [Description("部门代码")]
  562. public object DepartmentCode
  563. {
  564. get { return departmentCode; }
  565. set
  566. {
  567. if (value == null)
  568. {
  569. departmentCode = DBNull.Value;
  570. }
  571. else
  572. {
  573. departmentCode = value;
  574. }
  575. }
  576. }
  577. private object departmentDesc;
  578. [Description("部门名称")]
  579. public object DepartmentDesc
  580. {
  581. get { return departmentDesc; }
  582. set
  583. {
  584. if (value == null)
  585. {
  586. departmentDesc = DBNull.Value;
  587. }
  588. else
  589. {
  590. departmentDesc = value;
  591. }
  592. }
  593. }
  594. private object zbsFlag;
  595. [Description("质保书来源")]
  596. public object ZbsFlag
  597. {
  598. get { return zbsFlag; }
  599. set
  600. {
  601. if (value == null)
  602. {
  603. zbsFlag = DBNull.Value;
  604. }
  605. else
  606. {
  607. zbsFlag = value;
  608. }
  609. }
  610. }
  611. private object fixNum;
  612. [Description("倍尺数")]
  613. public object FixNum
  614. {
  615. get { return fixNum; }
  616. set
  617. {
  618. if (value == null)
  619. {
  620. fixNum = DBNull.Value;
  621. }
  622. else
  623. {
  624. fixNum = value;
  625. }
  626. }
  627. }
  628. private object supplyUnit;
  629. [Description("制造商")]
  630. public object SupplyUnit
  631. {
  632. get { return supplyUnit; }
  633. set { supplyUnit = value; }
  634. }
  635. private object supplyUnitCode;
  636. [Description("制造商代码")]
  637. public object SupplyUnitCode
  638. {
  639. get { return supplyUnitCode; }
  640. set { supplyUnitCode = value; }
  641. }
  642. public MatZcMEntity()
  643. {
  644. pipmemo = "";
  645. fixNum = "";
  646. zbsFlag = "";
  647. plineCode = "";
  648. departmentDesc = "";
  649. departmentCode = "";
  650. managementName = "";
  651. managementNo = "";
  652. createTime = "";
  653. createName = "";
  654. balYearMonth = "";
  655. inMold = "";
  656. proNo = "";
  657. lockLiku = "";
  658. mngLockFlag = "";
  659. lockFlag = "";
  660. stdStyle = "";
  661. stdStyleDesc = "";
  662. modelCode = "";
  663. modelDesc = "";
  664. belongCode = "";
  665. belongName = "";
  666. judgeStoveNo = "";
  667. batchNo = "";
  668. batchGroudNo = "";
  669. productFlag = "";
  670. matStatus = "";
  671. specCode = "";
  672. specName = "";
  673. actDimater = "";
  674. actHeight = "";
  675. actLenMin = "";
  676. actLenMax = "";
  677. produccode = "";
  678. producname = "";
  679. materialNo = "";
  680. materialName = "";
  681. steelcode = "";
  682. steelname = "";
  683. stdCode = "";
  684. stdName = "";
  685. orderNo = "";
  686. orderSeq = "";
  687. orderSeqNo = "";
  688. ordPk = "";
  689. ordLnPk = "";
  690. ordLnDlyPk = "";
  691. proOrderNo = "";
  692. proOrderId = "";
  693. instockTime = "";
  694. storageNo = "";
  695. actLen = 0;
  696. actCount = 0;
  697. lkactCount = 0;
  698. tdactCount = 0;
  699. actWeight = 0;
  700. actTheoryWight = 0;
  701. ponderGrossWt = 0;
  702. judgeStdName = "";
  703. }
  704. }
  705. }