PlnOrdCraftFileEntity.cs 22 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941
  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.sale.order.model
  7. {
  8. public class PlnOrdCraftFileEntity
  9. {
  10. /// <summary>
  11. /// ORD_PK
  12. /// </summary>
  13. private object ordPk;
  14. /// <summary>
  15. /// ORD_LN_PK(ORD_PK+三位流水号)
  16. /// </summary>
  17. private object ordLnPk;
  18. /// <summary>
  19. /// 合同号
  20. /// </summary>
  21. private object orderNo;
  22. /// <summary>
  23. /// 合同行号
  24. /// </summary>
  25. private object orderSeq;
  26. /// <summary>
  27. /// 工艺文件号
  28. /// </summary>
  29. private object craftFileNo;
  30. /// <summary>
  31. /// 工艺文件责任人
  32. /// </summary>
  33. private object craftFileMan;
  34. /// <summary>
  35. /// 品种
  36. /// </summary>
  37. private object producJx;
  38. /// <summary>
  39. /// 炼钢标准
  40. /// </summary>
  41. private object stdLgNo;
  42. /// <summary>
  43. /// 轧管标准
  44. /// </summary>
  45. private object stdZgNo;
  46. /// <summary>
  47. /// 管加工标准
  48. /// </summary>
  49. private object stdGjgNo;
  50. /// <summary>
  51. /// 钢级(牌号)代码
  52. /// </summary>
  53. private object steelcode;
  54. /// <summary>
  55. /// 钢级(牌号)名称
  56. /// </summary>
  57. private object steelname;
  58. /// <summary>
  59. /// 钢种(多种列举)
  60. /// </summary>
  61. private object gradecode;
  62. /// <summary>
  63. /// 外径
  64. /// </summary>
  65. private object outdiameter;
  66. /// <summary>
  67. /// 壁厚
  68. /// </summary>
  69. private object wallthick;
  70. /// <summary>
  71. /// 扣型代码
  72. /// </summary>
  73. private object modelCode;
  74. /// <summary>
  75. /// 扣型描述
  76. /// </summary>
  77. private object modelDesc;
  78. /// <summary>
  79. /// 变径类型
  80. /// </summary>
  81. private object bjType;
  82. /// <summary>
  83. /// S/D(壁厚/外径)
  84. /// </summary>
  85. private object sDivD;
  86. /// <summary>
  87. /// 下限内控壁厚
  88. /// </summary>
  89. private object heightNkMin;
  90. /// <summary>
  91. /// 上限内控壁厚
  92. /// </summary>
  93. private object heightNkMax;
  94. /// <summary>
  95. /// 长度范围
  96. /// </summary>
  97. private object lengthExtent;
  98. /// <summary>
  99. /// 工艺路线
  100. /// </summary>
  101. private object craftPath;
  102. /// <summary>
  103. /// 热处理
  104. /// </summary>
  105. private object rclInfo;
  106. /// <summary>
  107. /// 成品缴库单位
  108. /// </summary>
  109. private object paydownDpt;
  110. /// <summary>
  111. /// 监制
  112. /// </summary>
  113. private object monitorInfo;
  114. /// <summary>
  115. /// 孔型信息
  116. /// </summary>
  117. private object holeModalInfo;
  118. /// <summary>
  119. /// 工艺文件类型(2002 基础表)
  120. /// </summary>
  121. private object craftFileTypeCode;
  122. /// <summary>
  123. /// 工艺文件类型名称
  124. /// </summary>
  125. private object craftFileTypeNm;
  126. /// <summary>
  127. /// 工艺文件路径
  128. /// </summary>
  129. private object craftFilePath;
  130. /// <summary>
  131. /// 工艺文件状态(2003 基础表)
  132. /// </summary>
  133. private object craftFileFlagCode;
  134. /// <summary>
  135. /// 工艺文件状态名称
  136. /// </summary>
  137. private object craftFileFlagNm;
  138. /// <summary>
  139. /// 工艺文件更新时间
  140. /// </summary>
  141. private object craftFileUptime;
  142. /// <summary>
  143. /// 创建人
  144. /// </summary>
  145. private object createName;
  146. /// <summary>
  147. /// 创建时间
  148. /// </summary>
  149. private object createTime;
  150. /// <summary>
  151. /// 修改人
  152. /// </summary>
  153. private object updateName;
  154. /// <summary>
  155. /// 修改时间
  156. /// </summary>
  157. private object updateTime;
  158. public PlnOrdCraftFileEntity()
  159. {
  160. ordPk = "";
  161. ordLnPk = "";
  162. orderNo = "";
  163. orderSeq = "";
  164. craftFileNo = "";
  165. craftFileMan = "";
  166. producJx = "";
  167. stdLgNo = "";
  168. stdZgNo = "";
  169. stdGjgNo = "";
  170. steelcode = "";
  171. steelname = "";
  172. gradecode = "";
  173. outdiameter = "";
  174. wallthick = "";
  175. modelCode = "";
  176. modelDesc = "";
  177. bjType = "";
  178. sDivD = "";
  179. heightNkMin = "";
  180. heightNkMax = "";
  181. lengthExtent = "";
  182. craftPath = "";
  183. rclInfo = "";
  184. paydownDpt = "";
  185. monitorInfo = "";
  186. holeModalInfo = "";
  187. craftFileTypeCode = "";
  188. craftFileTypeNm = "";
  189. craftFilePath = "";
  190. craftFileFlagCode = "";
  191. craftFileFlagNm = "";
  192. craftFileUptime = "";
  193. createName = "";
  194. createTime = "";
  195. updateName = "";
  196. updateTime = "";
  197. }
  198. /// <summary>
  199. /// ORD_PK
  200. /// </summary>
  201. [Description("ORD_PK")]
  202. public object OrdPk
  203. {
  204. get { return ordPk; }
  205. set
  206. {
  207. if (value == null)
  208. {
  209. ordPk = DBNull.Value;
  210. }
  211. else
  212. {
  213. ordPk = value;
  214. }
  215. }
  216. }
  217. /// <summary>
  218. /// ORD_LN_PK(ORD_PK+三位流水号)
  219. /// </summary>
  220. [Description("ORD_LN_PK(ORD_PK+三位流水号)")]
  221. public object OrdLnPk
  222. {
  223. get { return ordLnPk; }
  224. set
  225. {
  226. if (value == null)
  227. {
  228. ordLnPk = DBNull.Value;
  229. }
  230. else
  231. {
  232. ordLnPk = value;
  233. }
  234. }
  235. }
  236. /// <summary>
  237. /// 合同号
  238. /// </summary>
  239. [Description("合同号")]
  240. public object OrderNo
  241. {
  242. get { return orderNo; }
  243. set
  244. {
  245. if (value == null)
  246. {
  247. orderNo = DBNull.Value;
  248. }
  249. else
  250. {
  251. orderNo = value;
  252. }
  253. }
  254. }
  255. /// <summary>
  256. /// 合同行号
  257. /// </summary>
  258. [Description("合同行号")]
  259. public object OrderSeq
  260. {
  261. get { return orderSeq; }
  262. set
  263. {
  264. if (value == null)
  265. {
  266. orderSeq = DBNull.Value;
  267. }
  268. else
  269. {
  270. orderSeq = value;
  271. }
  272. }
  273. }
  274. /// <summary>
  275. /// 工艺文件号
  276. /// </summary>
  277. [Description("工艺文件号")]
  278. public object CraftFileNo
  279. {
  280. get { return craftFileNo; }
  281. set
  282. {
  283. if (value == null)
  284. {
  285. craftFileNo = DBNull.Value;
  286. }
  287. else
  288. {
  289. craftFileNo = value;
  290. }
  291. }
  292. }
  293. /// <summary>
  294. /// 工艺文件责任人
  295. /// </summary>
  296. [Description("工艺文件责任人")]
  297. public object CraftFileMan
  298. {
  299. get { return craftFileMan; }
  300. set
  301. {
  302. if (value == null)
  303. {
  304. craftFileMan = DBNull.Value;
  305. }
  306. else
  307. {
  308. craftFileMan = value;
  309. }
  310. }
  311. }
  312. /// <summary>
  313. /// 品种
  314. /// </summary>
  315. [Description("品种")]
  316. public object ProducJx
  317. {
  318. get { return producJx; }
  319. set
  320. {
  321. if (value == null)
  322. {
  323. producJx = DBNull.Value;
  324. }
  325. else
  326. {
  327. producJx = value;
  328. }
  329. }
  330. }
  331. /// <summary>
  332. /// 炼钢标准
  333. /// </summary>
  334. [Description("炼钢标准")]
  335. public object StdLgNo
  336. {
  337. get { return stdLgNo; }
  338. set
  339. {
  340. if (value == null)
  341. {
  342. stdLgNo = DBNull.Value;
  343. }
  344. else
  345. {
  346. stdLgNo = value;
  347. }
  348. }
  349. }
  350. /// <summary>
  351. /// 轧管标准
  352. /// </summary>
  353. [Description("轧管标准")]
  354. public object StdZgNo
  355. {
  356. get { return stdZgNo; }
  357. set
  358. {
  359. if (value == null)
  360. {
  361. stdZgNo = DBNull.Value;
  362. }
  363. else
  364. {
  365. stdZgNo = value;
  366. }
  367. }
  368. }
  369. /// <summary>
  370. /// 管加工标准
  371. /// </summary>
  372. [Description("管加工标准")]
  373. public object StdGjgNo
  374. {
  375. get { return stdGjgNo; }
  376. set
  377. {
  378. if (value == null)
  379. {
  380. stdGjgNo = DBNull.Value;
  381. }
  382. else
  383. {
  384. stdGjgNo = value;
  385. }
  386. }
  387. }
  388. /// <summary>
  389. /// 钢级(牌号)代码
  390. /// </summary>
  391. [Description("钢级(牌号)代码")]
  392. public object Steelcode
  393. {
  394. get { return steelcode; }
  395. set
  396. {
  397. if (value == null)
  398. {
  399. steelcode = DBNull.Value;
  400. }
  401. else
  402. {
  403. steelcode = value;
  404. }
  405. }
  406. }
  407. /// <summary>
  408. /// 钢级(牌号)名称
  409. /// </summary>
  410. [Description("钢级(牌号)名称")]
  411. public object Steelname
  412. {
  413. get { return steelname; }
  414. set
  415. {
  416. if (value == null)
  417. {
  418. steelname = DBNull.Value;
  419. }
  420. else
  421. {
  422. steelname = value;
  423. }
  424. }
  425. }
  426. /// <summary>
  427. /// 钢种(多种列举)
  428. /// </summary>
  429. [Description("钢种(多种列举)")]
  430. public object Gradecode
  431. {
  432. get { return gradecode; }
  433. set
  434. {
  435. if (value == null)
  436. {
  437. gradecode = DBNull.Value;
  438. }
  439. else
  440. {
  441. gradecode = value;
  442. }
  443. }
  444. }
  445. /// <summary>
  446. /// 外径
  447. /// </summary>
  448. [Description("外径")]
  449. public object Outdiameter
  450. {
  451. get { return outdiameter; }
  452. set
  453. {
  454. if (value == null)
  455. {
  456. outdiameter = DBNull.Value;
  457. }
  458. else
  459. {
  460. outdiameter = value;
  461. }
  462. }
  463. }
  464. /// <summary>
  465. /// 壁厚
  466. /// </summary>
  467. [Description("壁厚")]
  468. public object Wallthick
  469. {
  470. get { return wallthick; }
  471. set
  472. {
  473. if (value == null)
  474. {
  475. wallthick = DBNull.Value;
  476. }
  477. else
  478. {
  479. wallthick = value;
  480. }
  481. }
  482. }
  483. /// <summary>
  484. /// 扣型代码
  485. /// </summary>
  486. [Description("扣型代码")]
  487. public object ModelCode
  488. {
  489. get { return modelCode; }
  490. set
  491. {
  492. if (value == null)
  493. {
  494. modelCode = DBNull.Value;
  495. }
  496. else
  497. {
  498. modelCode = value;
  499. }
  500. }
  501. }
  502. /// <summary>
  503. /// 扣型描述
  504. /// </summary>
  505. [Description("扣型描述")]
  506. public object ModelDesc
  507. {
  508. get { return modelDesc; }
  509. set
  510. {
  511. if (value == null)
  512. {
  513. modelDesc = DBNull.Value;
  514. }
  515. else
  516. {
  517. modelDesc = value;
  518. }
  519. }
  520. }
  521. /// <summary>
  522. /// 变径类型
  523. /// </summary>
  524. [Description("变径类型")]
  525. public object BjType
  526. {
  527. get { return bjType; }
  528. set
  529. {
  530. if (value == null)
  531. {
  532. bjType = DBNull.Value;
  533. }
  534. else
  535. {
  536. bjType = value;
  537. }
  538. }
  539. }
  540. /// <summary>
  541. /// S/D(壁厚/外径)
  542. /// </summary>
  543. [Description("S/D(壁厚/外径)")]
  544. public object SDivD
  545. {
  546. get { return sDivD; }
  547. set
  548. {
  549. if (value == null)
  550. {
  551. sDivD = DBNull.Value;
  552. }
  553. else
  554. {
  555. sDivD = value;
  556. }
  557. }
  558. }
  559. /// <summary>
  560. /// 下限内控壁厚
  561. /// </summary>
  562. [Description("下限内控壁厚")]
  563. public object HeightNkMin
  564. {
  565. get { return heightNkMin; }
  566. set
  567. {
  568. if (value == null)
  569. {
  570. heightNkMin = DBNull.Value;
  571. }
  572. else
  573. {
  574. heightNkMin = value;
  575. }
  576. }
  577. }
  578. /// <summary>
  579. /// 上限内控壁厚
  580. /// </summary>
  581. [Description("上限内控壁厚")]
  582. public object HeightNkMax
  583. {
  584. get { return heightNkMax; }
  585. set
  586. {
  587. if (value == null)
  588. {
  589. heightNkMax = DBNull.Value;
  590. }
  591. else
  592. {
  593. heightNkMax = value;
  594. }
  595. }
  596. }
  597. /// <summary>
  598. /// 长度范围
  599. /// </summary>
  600. [Description("长度范围")]
  601. public object LengthExtent
  602. {
  603. get { return lengthExtent; }
  604. set
  605. {
  606. if (value == null)
  607. {
  608. lengthExtent = DBNull.Value;
  609. }
  610. else
  611. {
  612. lengthExtent = value;
  613. }
  614. }
  615. }
  616. /// <summary>
  617. /// 工艺路线
  618. /// </summary>
  619. [Description("工艺路线")]
  620. public object CraftPath
  621. {
  622. get { return craftPath; }
  623. set
  624. {
  625. if (value == null)
  626. {
  627. craftPath = DBNull.Value;
  628. }
  629. else
  630. {
  631. craftPath = value;
  632. }
  633. }
  634. }
  635. /// <summary>
  636. /// 热处理
  637. /// </summary>
  638. [Description("热处理")]
  639. public object RclInfo
  640. {
  641. get { return rclInfo; }
  642. set
  643. {
  644. if (value == null)
  645. {
  646. rclInfo = DBNull.Value;
  647. }
  648. else
  649. {
  650. rclInfo = value;
  651. }
  652. }
  653. }
  654. /// <summary>
  655. /// 成品缴库单位
  656. /// </summary>
  657. [Description("成品缴库单位")]
  658. public object PaydownDpt
  659. {
  660. get { return paydownDpt; }
  661. set
  662. {
  663. if (value == null)
  664. {
  665. paydownDpt = DBNull.Value;
  666. }
  667. else
  668. {
  669. paydownDpt = value;
  670. }
  671. }
  672. }
  673. /// <summary>
  674. /// 监制
  675. /// </summary>
  676. [Description("监制")]
  677. public object MonitorInfo
  678. {
  679. get { return monitorInfo; }
  680. set
  681. {
  682. if (value == null)
  683. {
  684. monitorInfo = DBNull.Value;
  685. }
  686. else
  687. {
  688. monitorInfo = value;
  689. }
  690. }
  691. }
  692. /// <summary>
  693. /// 孔型信息
  694. /// </summary>
  695. [Description("孔型信息")]
  696. public object HoleModalInfo
  697. {
  698. get { return holeModalInfo; }
  699. set
  700. {
  701. if (value == null)
  702. {
  703. holeModalInfo = DBNull.Value;
  704. }
  705. else
  706. {
  707. holeModalInfo = value;
  708. }
  709. }
  710. }
  711. /// <summary>
  712. /// 工艺文件类型(2002 基础表)
  713. /// </summary>
  714. [Description("工艺文件类型(2002 基础表)")]
  715. public object CraftFileTypeCode
  716. {
  717. get { return craftFileTypeCode; }
  718. set
  719. {
  720. if (value == null)
  721. {
  722. craftFileTypeCode = DBNull.Value;
  723. }
  724. else
  725. {
  726. craftFileTypeCode = value;
  727. }
  728. }
  729. }
  730. /// <summary>
  731. /// 工艺文件类型名称
  732. /// </summary>
  733. [Description("工艺文件类型名称")]
  734. public object CraftFileTypeNm
  735. {
  736. get { return craftFileTypeNm; }
  737. set
  738. {
  739. if (value == null)
  740. {
  741. craftFileTypeNm = DBNull.Value;
  742. }
  743. else
  744. {
  745. craftFileTypeNm = value;
  746. }
  747. }
  748. }
  749. /// <summary>
  750. /// 工艺文件路径
  751. /// </summary>
  752. [Description("工艺文件路径")]
  753. public object CraftFilePath
  754. {
  755. get { return craftFilePath; }
  756. set
  757. {
  758. if (value == null)
  759. {
  760. craftFilePath = DBNull.Value;
  761. }
  762. else
  763. {
  764. craftFilePath = value;
  765. }
  766. }
  767. }
  768. /// <summary>
  769. /// 工艺文件状态(2003 基础表)
  770. /// </summary>
  771. [Description("工艺文件状态(2003 基础表)")]
  772. public object CraftFileFlagCode
  773. {
  774. get { return craftFileFlagCode; }
  775. set
  776. {
  777. if (value == null)
  778. {
  779. craftFileFlagCode = DBNull.Value;
  780. }
  781. else
  782. {
  783. craftFileFlagCode = value;
  784. }
  785. }
  786. }
  787. /// <summary>
  788. /// 工艺文件状态名称
  789. /// </summary>
  790. [Description("工艺文件状态名称")]
  791. public object CraftFileFlagNm
  792. {
  793. get { return craftFileFlagNm; }
  794. set
  795. {
  796. if (value == null)
  797. {
  798. craftFileFlagNm = DBNull.Value;
  799. }
  800. else
  801. {
  802. craftFileFlagNm = value;
  803. }
  804. }
  805. }
  806. /// <summary>
  807. /// 工艺文件更新时间
  808. /// </summary>
  809. [Description("工艺文件更新时间")]
  810. public object CraftFileUptime
  811. {
  812. get { return craftFileUptime; }
  813. set
  814. {
  815. if (value == null)
  816. {
  817. craftFileUptime = DBNull.Value;
  818. }
  819. else
  820. {
  821. craftFileUptime = value;
  822. }
  823. }
  824. }
  825. /// <summary>
  826. /// 创建人
  827. /// </summary>
  828. [Description("创建人")]
  829. public object CreateName
  830. {
  831. get { return createName; }
  832. set
  833. {
  834. if (value == null)
  835. {
  836. createName = DBNull.Value;
  837. }
  838. else
  839. {
  840. createName = value;
  841. }
  842. }
  843. }
  844. /// <summary>
  845. /// 创建时间
  846. /// </summary>
  847. [Description("创建时间")]
  848. public object CreateTime
  849. {
  850. get { return createTime; }
  851. set
  852. {
  853. if (value == null)
  854. {
  855. createTime = DBNull.Value;
  856. }
  857. else
  858. {
  859. createTime = value;
  860. }
  861. }
  862. }
  863. /// <summary>
  864. /// 修改人
  865. /// </summary>
  866. [Description("修改人")]
  867. public object UpdateName
  868. {
  869. get { return updateName; }
  870. set
  871. {
  872. if (value == null)
  873. {
  874. updateName = DBNull.Value;
  875. }
  876. else
  877. {
  878. updateName = value;
  879. }
  880. }
  881. }
  882. /// <summary>
  883. /// 修改时间
  884. /// </summary>
  885. [Description("修改时间")]
  886. public object UpdateTime
  887. {
  888. get { return updateTime; }
  889. set
  890. {
  891. if (value == null)
  892. {
  893. updateTime = DBNull.Value;
  894. }
  895. else
  896. {
  897. updateTime = value;
  898. }
  899. }
  900. }
  901. }
  902. }