MatZcMEntity4.cs 19 KB

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