MatZcMEntity.cs 32 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using System.ComponentModel;
  6. using Core.Mes.Client.Comm.Attribute;
  7. namespace Core.StlMes.Client.ZGMil.Entity
  8. {
  9. class MatZcMEntity
  10. {
  11. private double? spz;
  12. [Description("送判支")]
  13. public double? Spz
  14. {
  15. get { return spz; }
  16. set { spz = value; }
  17. }
  18. private String isOk;
  19. [Description("成品是否可送判")]
  20. public String IsOk
  21. {
  22. get { return isOk; }
  23. set { isOk = value; }
  24. }
  25. private String inspectionFlag;
  26. [Description("抽检状态")]
  27. public String InspectionFlag
  28. {
  29. get { return inspectionFlag; }
  30. set { inspectionFlag = value; }
  31. }
  32. private double? bjz;
  33. [Description("报检支")]
  34. public double? Bjz
  35. {
  36. get { return bjz; }
  37. set { bjz = value; }
  38. }
  39. private double? yjz;
  40. [Description("已检支")]
  41. public double? Yjz
  42. {
  43. get { return yjz; }
  44. set { yjz = value; }
  45. }
  46. private double? xcjz;
  47. [Description("需重检支")]
  48. public double? Xcjz
  49. {
  50. get { return xcjz; }
  51. set { xcjz = value; }
  52. }
  53. private double? ycjz;
  54. [Description("重检支")]
  55. public double? Ycjz
  56. {
  57. get { return ycjz; }
  58. set { ycjz = value; }
  59. }
  60. private String proPlanIdNext;
  61. [Description("下工序订单编号")]
  62. public String ProPlanIdNext
  63. {
  64. get { return proPlanIdNext; }
  65. set { proPlanIdNext = value; }
  66. }
  67. private String gxPlanNoNext;
  68. [Description("下工序排产序号")]
  69. public String GxPlanNoNext
  70. {
  71. get { return gxPlanNoNext; }
  72. set { gxPlanNoNext = value; }
  73. }
  74. private String modelCode;
  75. [Description("扣型代码")]
  76. public String ModelCode
  77. {
  78. get { return modelCode; }
  79. set { modelCode = value; }
  80. }
  81. private String modelDesc;
  82. [Description("扣型")]
  83. public String ModelDesc
  84. {
  85. get { return modelDesc; }
  86. set { modelDesc = value; }
  87. }
  88. private String stdStyle;
  89. [Description("标准类别代码")]
  90. public String StdStyle
  91. {
  92. get { return stdStyle; }
  93. set { stdStyle = value; }
  94. }
  95. private String stdStyleDesc;
  96. [Description("标准类别")]
  97. public String StdStyleDesc
  98. {
  99. get { return stdStyleDesc; }
  100. set { stdStyleDesc = value; }
  101. }
  102. private String belongCode;
  103. [Description("所属单位代码")]
  104. public String BelongCode
  105. {
  106. get { return belongCode; }
  107. set { belongCode = value; }
  108. }
  109. private String belongName;
  110. [Description("所属单位")]
  111. public String BelongName
  112. {
  113. get { return belongName; }
  114. set { belongName = value; }
  115. }
  116. private String judgeStoveNo;
  117. [Description("炉号")]
  118. public String JudgeStoveNo
  119. {
  120. get { return judgeStoveNo; }
  121. set { judgeStoveNo = value; }
  122. }
  123. private String lotNo;
  124. [Description("生产批号")]
  125. public String LotNo
  126. {
  127. get { return lotNo; }
  128. set { lotNo = value; }
  129. }
  130. private String judgeNo;
  131. [Description("轧管炉号")]
  132. public String JudgeNo
  133. {
  134. get { return judgeNo; }
  135. set { judgeNo = value; }
  136. }
  137. private String batchNo;
  138. [Description("批号")]
  139. public String BatchNo
  140. {
  141. get { return batchNo; }
  142. set { batchNo = value; }
  143. }
  144. private String batchGroudNo;
  145. [Description("组号")]
  146. public String BatchGroudNo
  147. {
  148. get { return batchGroudNo; }
  149. set { batchGroudNo = value; }
  150. }
  151. private String productFlag;
  152. [Description("材料类别")]
  153. public String ProductFlag
  154. {
  155. get { return productFlag; }
  156. set { productFlag = value; }
  157. }
  158. private String matStatus;
  159. [Description("材料状态")]
  160. public String MatStatus
  161. {
  162. get { return matStatus; }
  163. set { matStatus = value; }
  164. }
  165. private String specCode;
  166. [Description("规格代码")]
  167. public String SpecCode
  168. {
  169. get { return specCode; }
  170. set { specCode = value; }
  171. }
  172. private String specName;
  173. [Description("规格")]
  174. public String SpecName
  175. {
  176. get { return specName; }
  177. set { specName = value; }
  178. }
  179. private String actDimater;
  180. [Description("外径")]
  181. public String ActDimater
  182. {
  183. get { return actDimater; }
  184. set { actDimater = value; }
  185. }
  186. private String actHeight;
  187. [Description("壁厚")]
  188. public String ActHeight
  189. {
  190. get { return actHeight; }
  191. set { actHeight = value; }
  192. }
  193. private String actLenMin;
  194. [Description("长度下限")]
  195. public String ActLenMin
  196. {
  197. get { return actLenMin; }
  198. set { actLenMin = value; }
  199. }
  200. private String actLenMax;
  201. [Description("长度上限")]
  202. public String ActLenMax
  203. {
  204. get { return actLenMax; }
  205. set { actLenMax = value; }
  206. }
  207. private String produccode;
  208. [Description("品名代码")]
  209. public String Produccode
  210. {
  211. get { return produccode; }
  212. set { produccode = value; }
  213. }
  214. private String producname;
  215. [Description("品名")]
  216. public String Producname
  217. {
  218. get { return producname; }
  219. set { producname = value; }
  220. }
  221. private String materialNo;
  222. [Description("物料编码")]
  223. public String MaterialNo
  224. {
  225. get { return materialNo; }
  226. set { materialNo = value; }
  227. }
  228. private String materialName;
  229. [Description("物料")]
  230. public String MaterialName
  231. {
  232. get { return materialName; }
  233. set { materialName = value; }
  234. }
  235. private String steelcode;
  236. [Description("钢级牌号代码")]
  237. public String Steelcode
  238. {
  239. get { return steelcode; }
  240. set { steelcode = value; }
  241. }
  242. private String steelname;
  243. [Description("钢级")]
  244. public String Steelname
  245. {
  246. get { return steelname; }
  247. set { steelname = value; }
  248. }
  249. private String stdCode;
  250. [Description("标准代码")]
  251. public String StdCode
  252. {
  253. get { return stdCode; }
  254. set { stdCode = value; }
  255. }
  256. private String stdName;
  257. [Description("标准名称")]
  258. public String StdName
  259. {
  260. get { return stdName; }
  261. set { stdName = value; }
  262. }
  263. private String orderNo;
  264. [Description("合同号")]
  265. public String OrderNo
  266. {
  267. get { return orderNo; }
  268. set { orderNo = value; }
  269. }
  270. private String orderSeq;
  271. [Description("合同行")]
  272. public String OrderSeq
  273. {
  274. get { return orderSeq; }
  275. set { orderSeq = value; }
  276. }
  277. private String orderSeqNo;
  278. [Description("交货行")]
  279. public String OrderSeqNo
  280. {
  281. get { return orderSeqNo; }
  282. set { orderSeqNo = value; }
  283. }
  284. private String ordPk;
  285. [Description("合同主键")]
  286. public String OrdPk
  287. {
  288. get { return ordPk; }
  289. set { ordPk = value; }
  290. }
  291. private String ordLnPk;
  292. [Description("合同行主键")]
  293. public String OrdLnPk
  294. {
  295. get { return ordLnPk; }
  296. set { ordLnPk = value; }
  297. }
  298. private String ordLnDlyPk;
  299. [Description("交货行主键")]
  300. public String OrdLnDlyPk
  301. {
  302. get { return ordLnDlyPk; }
  303. set { ordLnDlyPk = value; }
  304. }
  305. private String proOrderNo;
  306. [Description("生产合同号")]
  307. public String ProOrderNo
  308. {
  309. get { return proOrderNo; }
  310. set { proOrderNo = value; }
  311. }
  312. private String proOrderId;
  313. [Description("生产订单号")]
  314. public String ProOrderId
  315. {
  316. get { return proOrderId; }
  317. set { proOrderId = value; }
  318. }
  319. private String instockTime;
  320. [Description("入库时间")]
  321. public String InstockTime
  322. {
  323. get { return instockTime; }
  324. set { instockTime = value; }
  325. }
  326. private String locationNo;
  327. [Description("料位号")]
  328. public String LocationNo
  329. {
  330. get { return locationNo; }
  331. set { locationNo = value; }
  332. }
  333. private String storageNo;
  334. [Description("仓库号编码")]
  335. public String StorageNo
  336. {
  337. get { return storageNo; }
  338. set { storageNo = value; }
  339. }
  340. private String storageName;
  341. [Description("仓库名称")]
  342. public String StorageName
  343. {
  344. get { return storageName; }
  345. set { storageName = value; }
  346. }
  347. private String outstockDoc;
  348. [Description("出库单编号")]
  349. public String OutstockDoc
  350. {
  351. get { return outstockDoc; }
  352. set { outstockDoc = value; }
  353. }
  354. private double? actLen;
  355. [Description("长度")]
  356. public double? ActLen
  357. {
  358. get { return actLen; }
  359. set { actLen = value; }
  360. }
  361. private double? actCount;
  362. [Description("支数")]
  363. public double? ActCount
  364. {
  365. get { return actCount; }
  366. set { actCount = value; }
  367. }
  368. private double? lkactCount;
  369. [Description("利库支数")]
  370. public double? LkactCount
  371. {
  372. get { return lkactCount; }
  373. set { lkactCount = value; }
  374. }
  375. private double? tdactCount;
  376. [Description("脱单支数")]
  377. public double? TdactCount
  378. {
  379. get { return tdactCount; }
  380. set { tdactCount = value; }
  381. }
  382. private double? gpactCount;
  383. [Description("改判支数")]
  384. public double? GpactCount
  385. {
  386. get { return gpactCount; }
  387. set { gpactCount = value; }
  388. }
  389. private double? actWeight;
  390. [Description("重量(t)")]
  391. public double? ActWeight
  392. {
  393. get { return actWeight; }
  394. set { actWeight = value; }
  395. }
  396. private double? actTheoryWeight;
  397. [Description("理重(t)")]
  398. public double? ActTheoryWeight
  399. {
  400. get { return actTheoryWeight; }
  401. set { actTheoryWeight = value; }
  402. }
  403. private double? ponderGrossWt;
  404. [Description("过磅重量(t)")]
  405. public double? PonderGrossWt
  406. {
  407. get { return ponderGrossWt; }
  408. set { ponderGrossWt = value; }
  409. }
  410. private double? ponderGrossCount;
  411. [Description("过磅支数")]
  412. public double? PonderGrossCount
  413. {
  414. get { return ponderGrossCount; }
  415. set { ponderGrossCount = value; }
  416. }
  417. private String memo;
  418. [Description("备注")]
  419. public String Memo
  420. {
  421. get { return memo; }
  422. set { memo = value; }
  423. }
  424. private String pipmemo;
  425. [Description("备注")]
  426. public String Pipmemo
  427. {
  428. get { return pipmemo; }
  429. set { pipmemo = value; }
  430. }
  431. private String judgeResultCode;
  432. [Description("综合判定结果")]
  433. public String JudgeResultCode
  434. {
  435. get { return judgeResultCode; }
  436. set { judgeResultCode = value; }
  437. }
  438. private String judgeResult;
  439. [Description("综合判定结果")]
  440. public String JudgeResult
  441. {
  442. get { return judgeResult; }
  443. set { judgeResult = value; }
  444. }
  445. private String judgeStdName;
  446. [Description("判定标准")]
  447. public String JudgeStdName
  448. {
  449. get { return judgeStdName; }
  450. set { judgeStdName = value; }
  451. }
  452. /// <summary>
  453. /// 质量封锁标志(0未封锁、2质量封锁)
  454. /// </summary>
  455. private object lockFlag;
  456. /// <summary>
  457. /// 质量封锁标志(0未封锁、2质量封锁)
  458. /// </summary>
  459. [Description("质量封锁标志")]
  460. public object LockFlag
  461. {
  462. get { return lockFlag; }
  463. set
  464. {
  465. if (value == null)
  466. {
  467. lockFlag = DBNull.Value;
  468. }
  469. else
  470. {
  471. lockFlag = value;
  472. }
  473. }
  474. }
  475. /// <summary>
  476. /// 管理封锁标志(0未封锁、1管理封锁)
  477. /// </summary>
  478. private object mngLockFlag;
  479. [Description("管理封锁标志")]
  480. public object MngLockFlag
  481. {
  482. get { return mngLockFlag; }
  483. set
  484. {
  485. if (value == null)
  486. {
  487. mngLockFlag = DBNull.Value;
  488. }
  489. else
  490. {
  491. mngLockFlag = value;
  492. }
  493. }
  494. }
  495. private object proNo;
  496. [Description("操作单号")]
  497. public object ProNo
  498. {
  499. get { return proNo; }
  500. set
  501. {
  502. if (value == null)
  503. {
  504. proNo = DBNull.Value;
  505. }
  506. else
  507. {
  508. proNo = value;
  509. }
  510. }
  511. }
  512. private object lockLiku;
  513. [Description("审核状态")]
  514. public object LockLiku
  515. {
  516. get { return lockLiku; }
  517. set
  518. {
  519. if (value == null)
  520. {
  521. lockLiku = DBNull.Value;
  522. }
  523. else
  524. {
  525. lockLiku = value;
  526. }
  527. }
  528. }
  529. /// <summary>
  530. /// 生产产线代码
  531. /// </summary>
  532. private object plineCode;
  533. [Description("产线代码")]
  534. public object PlineCode
  535. {
  536. get { return plineCode; }
  537. set
  538. {
  539. if (value == null)
  540. {
  541. plineCode = DBNull.Value;
  542. }
  543. else
  544. {
  545. plineCode = value;
  546. }
  547. }
  548. }
  549. /// <summary>
  550. /// 生产产线名称
  551. /// </summary>
  552. private object plineName;
  553. [Description("产线")]
  554. public object PlineName
  555. {
  556. get { return plineName; }
  557. set
  558. {
  559. if (value == null)
  560. {
  561. plineName = DBNull.Value;
  562. }
  563. else
  564. {
  565. plineName = value;
  566. }
  567. }
  568. }
  569. private object jugdeApplyCode;
  570. [Description("申请单号")]
  571. public object JugdeApplyCode
  572. {
  573. get { return jugdeApplyCode; }
  574. set
  575. {
  576. if (value == null)
  577. {
  578. jugdeApplyCode = DBNull.Value;
  579. }
  580. else
  581. {
  582. jugdeApplyCode = value;
  583. }
  584. }
  585. }
  586. private object heatPlanNo;
  587. [Description("炉次计划号")]
  588. public object HeatPlanNo
  589. {
  590. get { return heatPlanNo; }
  591. set
  592. {
  593. if (value == null)
  594. {
  595. heatPlanNo = DBNull.Value;
  596. }
  597. else
  598. {
  599. heatPlanNo = value;
  600. }
  601. }
  602. }
  603. private object qcmStaus;
  604. [Description("入库状态")]
  605. public object QcmStaus
  606. {
  607. get { return qcmStaus; }
  608. set
  609. {
  610. if (value == null)
  611. {
  612. qcmStaus = DBNull.Value;
  613. }
  614. else
  615. {
  616. qcmStaus = value;
  617. }
  618. }
  619. }
  620. private object faceResultCode;
  621. [Description("表检结果")]
  622. public object FaceResultCode
  623. {
  624. get { return faceResultCode; }
  625. set
  626. {
  627. if (value == null)
  628. {
  629. faceResultCode = DBNull.Value;
  630. }
  631. else
  632. {
  633. faceResultCode = value;
  634. }
  635. }
  636. }
  637. private object detectResultCode;
  638. [Description("探伤结果")]
  639. public object DetectResultCode
  640. {
  641. get { return detectResultCode; }
  642. set
  643. {
  644. if (value == null)
  645. {
  646. detectResultCode = DBNull.Value;
  647. }
  648. else
  649. {
  650. detectResultCode = value;
  651. }
  652. }
  653. }
  654. /// <summary>
  655. /// [轧管工序]成分判定结果代码
  656. /// </summary>
  657. private object chemResultCode;
  658. [Description("成分结果")]
  659. public object ChemResultCode
  660. {
  661. get { return chemResultCode; }
  662. set
  663. {
  664. if (value == null)
  665. {
  666. chemResultCode = DBNull.Value;
  667. }
  668. else
  669. {
  670. chemResultCode = value;
  671. }
  672. }
  673. }
  674. /// <summary>
  675. /// [轧管工序]性能判定结果代码
  676. /// </summary>
  677. private object phyResultCode;
  678. [Description("性能结果")]
  679. public object PhyResultCode
  680. {
  681. get { return phyResultCode; }
  682. set
  683. {
  684. if (value == null)
  685. {
  686. phyResultCode = DBNull.Value;
  687. }
  688. else
  689. {
  690. phyResultCode = value;
  691. }
  692. }
  693. }
  694. private object flagStoveNoZg;
  695. [Description("标识炉号")]
  696. public object FlagStoveNoZg
  697. {
  698. get { return flagStoveNoZg; }
  699. set
  700. {
  701. if (value == null)
  702. {
  703. flagStoveNoZg = DBNull.Value;
  704. }
  705. else
  706. {
  707. flagStoveNoZg = value;
  708. }
  709. }
  710. }
  711. private object target;
  712. [Description("判定字头")]
  713. public object Target
  714. {
  715. get { return target; }
  716. set
  717. {
  718. if (value == null)
  719. {
  720. target = DBNull.Value;
  721. }
  722. else
  723. {
  724. target = value;
  725. }
  726. }
  727. }
  728. private object packFlag;
  729. [Description("打捆标识")]
  730. public object PackFlag
  731. {
  732. get { return packFlag; }
  733. set
  734. {
  735. if (value == null)
  736. {
  737. packFlag = DBNull.Value;
  738. }
  739. else
  740. {
  741. packFlag = value;
  742. }
  743. }
  744. }
  745. private object applyFlag;
  746. [Description("送判状态")]
  747. public object ApplyFlag
  748. {
  749. get { return applyFlag; }
  750. set
  751. {
  752. if (value == null)
  753. {
  754. applyFlag = DBNull.Value;
  755. }
  756. else
  757. {
  758. applyFlag = value;
  759. }
  760. }
  761. }
  762. private object backJugdeMemo;
  763. [Description("退判原因")]
  764. public object BackJugdeMemo
  765. {
  766. get { return backJugdeMemo; }
  767. set
  768. {
  769. if (value == null)
  770. {
  771. backJugdeMemo = DBNull.Value;
  772. }
  773. else
  774. {
  775. backJugdeMemo = value;
  776. }
  777. }
  778. }
  779. private object gxPlanNo;
  780. [Description("轧管排产序号")]
  781. public object GxPlanNo
  782. {
  783. get { return gxPlanNo; }
  784. set
  785. {
  786. if (value == null)
  787. {
  788. gxPlanNo = DBNull.Value;
  789. }
  790. else
  791. {
  792. gxPlanNo = value;
  793. }
  794. }
  795. }
  796. private object detectResultPath;
  797. [Description("探伤报告")]
  798. public object DetectResultPath
  799. {
  800. get { return detectResultPath; }
  801. set
  802. {
  803. if (value == null)
  804. {
  805. detectResultPath = DBNull.Value;
  806. }
  807. else
  808. {
  809. detectResultPath = value;
  810. }
  811. }
  812. }
  813. private object faceResultPath;
  814. [Description("表检报告")]
  815. public object FaceResultPath
  816. {
  817. get { return faceResultPath; }
  818. set
  819. {
  820. if (value == null)
  821. {
  822. faceResultPath = DBNull.Value;
  823. }
  824. else
  825. {
  826. faceResultPath = value;
  827. }
  828. }
  829. }
  830. /// <summary>
  831. /// 加工几何尺寸结果
  832. /// </summary>
  833. private string mchDimensionsResult = "";
  834. /// <summary>
  835. /// 加工表面质量结果
  836. /// </summary>
  837. private string mchVisualResult = "";
  838. /// <summary>
  839. /// 加工几何尺寸结果
  840. /// </summary>
  841. [Description("几何尺寸结果")]
  842. [Nullable(true)]
  843. [DataLength(10)]
  844. public string MchDimensionsResult
  845. {
  846. get { return mchDimensionsResult; }
  847. set { mchDimensionsResult = value; }
  848. }
  849. /// <summary>
  850. /// 加工表面质量结果
  851. /// </summary>
  852. [Description("表面质量结果")]
  853. [Nullable(true)]
  854. [DataLength(10)]
  855. public string MchVisualResult
  856. {
  857. get { return mchVisualResult; }
  858. set { mchVisualResult = value; }
  859. }
  860. public MatZcMEntity()
  861. {
  862. proPlanIdNext = "";
  863. gxPlanNoNext = "";
  864. detectResultPath = "";
  865. faceResultPath = "";
  866. gxPlanNo = "";
  867. applyFlag = "";
  868. backJugdeMemo = "";
  869. packFlag = "";
  870. target = "";
  871. phyResultCode = "";
  872. chemResultCode = "";
  873. flagStoveNoZg = "";
  874. qcmStaus = "";
  875. heatPlanNo = "";
  876. jugdeApplyCode = "";
  877. plineCode = "";
  878. plineName = "";
  879. proNo = "";
  880. lockLiku = "";
  881. mngLockFlag = "";
  882. lockFlag = "";
  883. stdStyle = "";
  884. stdStyleDesc = "";
  885. modelCode = "";
  886. modelDesc = "";
  887. belongCode = "";
  888. belongName = "";
  889. judgeStoveNo = "";
  890. batchNo = "";
  891. batchGroudNo = "";
  892. productFlag = "";
  893. matStatus = "";
  894. specCode = "";
  895. specName = "";
  896. actDimater = "";
  897. actHeight = "";
  898. actLenMin = "";
  899. actLenMax = "";
  900. produccode = "";
  901. producname = "";
  902. materialNo = "";
  903. materialName = "";
  904. steelcode = "";
  905. steelname = "";
  906. stdCode = "";
  907. stdName = "";
  908. orderNo = "";
  909. orderSeq = "";
  910. orderSeqNo = "";
  911. ordPk = "";
  912. ordLnPk = "";
  913. ordLnDlyPk = "";
  914. proOrderNo = "";
  915. proOrderId = "";
  916. instockTime = "";
  917. storageNo = "";
  918. actLen = 0;
  919. actCount = 0;
  920. lkactCount = 0;
  921. tdactCount = 0;
  922. actWeight = 0;
  923. ponderGrossWt = 0;
  924. actTheoryWeight = 0;
  925. judgeStdName = "";
  926. locationNo = "";
  927. judgeNo = "";
  928. lotNo = "";
  929. }
  930. /// <summary>
  931. /// 订货计量单位(支、米、吨)
  932. /// </summary>
  933. private string orderUnit = "";
  934. /// <summary>
  935. /// 累计送判米
  936. /// </summary>
  937. private decimal? actLen1 = null;
  938. /// <summary>
  939. /// 累计送判吨
  940. /// </summary>
  941. private decimal? actWeight1 = null;
  942. /// <summary>
  943. /// 累计送判吨(长尺)
  944. /// </summary>
  945. private decimal? actWeightL = null;
  946. /// <summary>
  947. /// 累计送判吨(短尺)
  948. /// </summary>
  949. private decimal? actWeightS = null;
  950. /// <summary>
  951. /// 累计送判米(按计划入)
  952. /// </summary>
  953. private decimal? actLen2 = null;
  954. /// <summary>
  955. /// 累计送判吨(按计划入)
  956. /// </summary>
  957. private decimal? actWeight2 = null;
  958. /// <summary>
  959. /// 缴库量下限
  960. /// </summary>
  961. private decimal? paydownWtMin = null;
  962. /// <summary>
  963. /// 缴库量上限
  964. /// </summary>
  965. private decimal? paydownWtMax = null;
  966. /// <summary>
  967. /// 估算量(支、吨)
  968. /// </summary>
  969. private decimal? orderweight = null;
  970. /// <summary>
  971. /// 短尺缴库量上限
  972. /// </summary>
  973. private decimal? orderWtMaxShort = null;
  974. /// <summary>
  975. /// 长尺缴库量上限
  976. /// </summary>
  977. private decimal? orderWtMaxLong = null;
  978. /// <summary>
  979. /// 入库区分
  980. /// </summary>
  981. private string inMold = "";
  982. /// <summary>
  983. /// 预计可送判支
  984. /// </summary>
  985. private decimal? kspz = null;
  986. /// <summary>
  987. /// 订货计量单位(支、米、吨)
  988. /// </summary>
  989. [Description("订货计量单位(支、米、吨)")]
  990. [Nullable(true)]
  991. [DataLength(20)]
  992. public string OrderUnit
  993. {
  994. get { return orderUnit; }
  995. set { orderUnit = value; }
  996. }
  997. /// <summary>
  998. /// 累计送判米
  999. /// </summary>
  1000. [Description("累计送判米")]
  1001. [Nullable(true)]
  1002. [DataLength(15)]
  1003. public decimal? ActLen1
  1004. {
  1005. get { return actLen1; }
  1006. set { actLen1 = value; }
  1007. }
  1008. /// <summary>
  1009. /// 累计送判吨
  1010. /// </summary>
  1011. [Description("累计送判吨")]
  1012. [Nullable(true)]
  1013. [DataLength(12)]
  1014. public decimal? ActWeight1
  1015. {
  1016. get { return actWeight1; }
  1017. set { actWeight1 = value; }
  1018. }
  1019. /// <summary>
  1020. /// 累计送判吨(长尺)
  1021. /// </summary>
  1022. [Description("累计送判吨(长尺)")]
  1023. [Nullable(true)]
  1024. [DataLength(12)]
  1025. public decimal? ActWeightL
  1026. {
  1027. get { return actWeightL; }
  1028. set { actWeightL = value; }
  1029. }
  1030. /// <summary>
  1031. /// 累计送判吨(短尺)
  1032. /// </summary>
  1033. [Description("累计送判吨(短尺)")]
  1034. [Nullable(true)]
  1035. [DataLength(12)]
  1036. public decimal? ActWeightS
  1037. {
  1038. get { return actWeightS; }
  1039. set { actWeightS = value; }
  1040. }
  1041. /// <summary>
  1042. /// 累计送判米(按计划入)
  1043. /// </summary>
  1044. [Description("累计送判米(按计划入)")]
  1045. [Nullable(true)]
  1046. [DataLength(15)]
  1047. public decimal? ActLen2
  1048. {
  1049. get { return actLen2; }
  1050. set { actLen2 = value; }
  1051. }
  1052. /// <summary>
  1053. /// 累计送判吨(按计划入)
  1054. /// </summary>
  1055. [Description("累计送判吨(按计划入)")]
  1056. [Nullable(true)]
  1057. [DataLength(12)]
  1058. public decimal? ActWeight2
  1059. {
  1060. get { return actWeight2; }
  1061. set { actWeight2 = value; }
  1062. }
  1063. /// <summary>
  1064. /// 缴库量下限
  1065. /// </summary>
  1066. [Description("缴库量下限")]
  1067. [Nullable(true)]
  1068. [DataLength(10)]
  1069. public decimal? PaydownWtMin
  1070. {
  1071. get { return paydownWtMin; }
  1072. set { paydownWtMin = value; }
  1073. }
  1074. /// <summary>
  1075. /// 缴库量上限
  1076. /// </summary>
  1077. [Description("缴库量上限")]
  1078. [Nullable(true)]
  1079. [DataLength(10)]
  1080. public decimal? PaydownWtMax
  1081. {
  1082. get { return paydownWtMax; }
  1083. set { paydownWtMax = value; }
  1084. }
  1085. /// <summary>
  1086. /// 估算量(支、吨)
  1087. /// </summary>
  1088. [Description("估算量(支、吨)")]
  1089. [Nullable(true)]
  1090. [DataLength(16)]
  1091. public decimal? Orderweight
  1092. {
  1093. get { return orderweight; }
  1094. set { orderweight = value; }
  1095. }
  1096. /// <summary>
  1097. /// 短尺缴库量上限
  1098. /// </summary>
  1099. [Description("短尺缴库量上限")]
  1100. [Nullable(true)]
  1101. [DataLength(10)]
  1102. public decimal? OrderWtMaxShort
  1103. {
  1104. get { return orderWtMaxShort; }
  1105. set { orderWtMaxShort = value; }
  1106. }
  1107. /// <summary>
  1108. /// 长尺缴库量上限
  1109. /// </summary>
  1110. [Description("长尺缴库量上限")]
  1111. [Nullable(true)]
  1112. [DataLength(10)]
  1113. public decimal? OrderWtMaxLong
  1114. {
  1115. get { return orderWtMaxLong; }
  1116. set { orderWtMaxLong = value; }
  1117. }
  1118. /// <summary>
  1119. /// 入库区分
  1120. /// </summary>
  1121. [Description("入库区分")]
  1122. [Nullable(true)]
  1123. [DataLength(20)]
  1124. public string InMold
  1125. {
  1126. get { return inMold; }
  1127. set { inMold = value; }
  1128. }
  1129. /// <summary>
  1130. /// 预计可送判支
  1131. /// </summary>
  1132. [Description("预计可送判支")]
  1133. [Nullable(true)]
  1134. [DataLength(20)]
  1135. public decimal? Kspz
  1136. {
  1137. get { return kspz; }
  1138. set { kspz = value; }
  1139. }
  1140. /// <summary>
  1141. /// 拆分支数
  1142. /// </summary>
  1143. private decimal? cfz = null;
  1144. /// <summary>
  1145. /// 拆分支
  1146. /// </summary>
  1147. [Description("拆分支")]
  1148. [Nullable(true)]
  1149. [DataLength(20)]
  1150. public decimal? Cfz
  1151. {
  1152. get { return cfz; }
  1153. set { cfz = value; }
  1154. }
  1155. /// <summary>
  1156. /// 长度类型
  1157. /// </summary>
  1158. private string lengthType = "";
  1159. /// <summary>
  1160. /// 长度类型
  1161. /// </summary>
  1162. [Description("长度类型")]
  1163. [Nullable(true)]
  1164. [DataLength(10)]
  1165. public string LengthType
  1166. {
  1167. get { return lengthType; }
  1168. set
  1169. {
  1170. if (value == "1")
  1171. lengthType = "长尺";
  1172. else if (value == "2")
  1173. lengthType = "短尺";
  1174. else if (value == "0")
  1175. lengthType = "正尺";
  1176. else lengthType = value;
  1177. }
  1178. }
  1179. }
  1180. }