PipeCheckconsignBaseinfoEntity.cs 18 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719
  1. using Core.Mes.Client.Comm.Attribute;
  2. using System;
  3. using System.Collections.Generic;
  4. using System.ComponentModel;
  5. using System.Linq;
  6. using System.Text;
  7. namespace Core.StlMes.Client.Lims.Data.PipeAndOutdec
  8. {
  9. class PipeCheckconsignBaseinfoEntity
  10. {
  11. /// <summary>
  12. /// 试样号
  13. /// </summary>
  14. private string sampleNo = "";
  15. /// <summary>
  16. /// 检验编号 产线代码 + 炉号 + 1位流水
  17. /// </summary>
  18. private string checkNo = "";
  19. /// <summary>
  20. /// 生产批号
  21. /// </summary>
  22. private string lotNo = "";
  23. /// <summary>
  24. /// 熔炼炉号
  25. /// </summary>
  26. private string stoveNo = "";
  27. /// <summary>
  28. /// 炉号 对应JUDGE_STOVE_NO 判定炉号
  29. /// </summary>
  30. private string heatNo = "";
  31. /// <summary>
  32. /// 钢级
  33. /// </summary>
  34. private string steelGrade = "";
  35. /// <summary>
  36. /// 钢号
  37. /// </summary>
  38. private string steelNo = "";
  39. /// <summary>
  40. /// 品名
  41. /// </summary>
  42. private string productName = "";
  43. /// <summary>
  44. /// 技术标准(生产标准)
  45. /// </summary>
  46. private string productStd = "";
  47. /// <summary>
  48. /// 工艺文件号
  49. /// </summary>
  50. private string craftFileNo = "";
  51. /// <summary>
  52. /// 合同号
  53. /// </summary>
  54. private string contractNo = "";
  55. /// <summary>
  56. /// 0为正常,1为重检样,2为复检(样品类型) 对应SAMPLE_TYPE
  57. /// </summary>
  58. private string checkCount = "";
  59. /// <summary>
  60. /// 产线代码
  61. /// </summary>
  62. private string plineCode = "";
  63. /// <summary>
  64. /// 产线
  65. /// </summary>
  66. private string plineName = "";
  67. /// <summary>
  68. /// 外径
  69. /// </summary>
  70. private string dimater = "";
  71. /// <summary>
  72. /// 壁厚
  73. /// </summary>
  74. private string height = "";
  75. /// <summary>
  76. /// 扣型
  77. /// </summary>
  78. private string buckleType = "";
  79. /// <summary>
  80. /// 工艺状态
  81. /// </summary>
  82. private string processStatus = "";
  83. /// <summary>
  84. /// 委托单位 对应 CONSIGNER
  85. /// </summary>
  86. private string consignDept = "";
  87. /// <summary>
  88. /// 委托人(MES为质量下发委托,其他为调度人)
  89. /// </summary>
  90. private string consignName = "";
  91. /// <summary>
  92. /// 委托时间
  93. /// </summary>
  94. private string consignTime = "";
  95. /// <summary>
  96. /// 是否监制(0为不监制,1为监制)
  97. /// </summary>
  98. private string isproducer = "";
  99. /// <summary>
  100. /// 特殊要求
  101. /// </summary>
  102. private string specReq = "";
  103. /// <summary>
  104. /// 取样人
  105. /// </summary>
  106. private string getName = "";
  107. /// <summary>
  108. /// 取样时间
  109. /// </summary>
  110. private string getTime = "";
  111. /// <summary>
  112. /// 委托单位送样人
  113. /// </summary>
  114. private string consigndeptSendName = "";
  115. /// <summary>
  116. /// 委托单位送样时间
  117. /// </summary>
  118. private string consigndeptSendTime = "";
  119. /// <summary>
  120. /// 加工接样人
  121. /// </summary>
  122. private string jgReceiveName = "";
  123. /// <summary>
  124. /// 加工样品交接时间
  125. /// </summary>
  126. private string jgReceiveTime = "";
  127. /// <summary>
  128. /// 是否加急(0否)
  129. /// </summary>
  130. private string isRush = "";
  131. /// <summary>
  132. /// 加急人
  133. /// </summary>
  134. private string rushName = "";
  135. /// <summary>
  136. /// 加急时间
  137. /// </summary>
  138. private string rushTime = "";
  139. /// <summary>
  140. /// 0委托单位未取样,1委托单位正在送样...,2加工已确认
  141. /// </summary>
  142. private string flag = "";
  143. /// <summary>
  144. /// 样品备注
  145. /// </summary>
  146. private string sampleRemark = "";
  147. /// <summary>
  148. /// 备注
  149. /// </summary>
  150. private string remark = "";
  151. /// <summary>
  152. /// 0生产厂委托,1人工委托
  153. /// </summary>
  154. private string dataType = "";
  155. /// <summary>
  156. /// 数据状态(1有效、无效)
  157. /// </summary>
  158. private string validflag = "";
  159. /// <summary>
  160. /// 工艺文件路径
  161. /// </summary>
  162. private string craftPath = "";
  163. /// <summary>
  164. /// 工序代码
  165. /// </summary>
  166. private string processCode = "";
  167. /// <summary>
  168. /// 委托类型
  169. /// </summary>
  170. private string craftSource = "";
  171. /// <summary>
  172. /// 制程号
  173. /// </summary>
  174. private string indexSeq = "";
  175. /// <summary>
  176. /// pic
  177. /// </summary>
  178. private string pic = "";
  179. private string cic = "";
  180. /// <summary>
  181. /// cic
  182. /// </summary>
  183. [Description("CIC")]
  184. [Nullable(false)]
  185. [DataLength(50)]
  186. public string Cic
  187. {
  188. get { return cic; }
  189. set { cic = value; }
  190. }
  191. /// <summary>
  192. /// pic
  193. /// </summary>
  194. [Description("PIC")]
  195. [Nullable(false)]
  196. [DataLength(50)]
  197. public string Pic
  198. {
  199. get { return pic; }
  200. set { pic = value; }
  201. }
  202. /// <summary>
  203. /// 制程号
  204. /// </summary>
  205. [Description("制程号")]
  206. [Nullable(false)]
  207. [DataLength(50)]
  208. public string IndexSeq
  209. {
  210. get { return indexSeq; }
  211. set { indexSeq = value; }
  212. }
  213. /// <summary>
  214. /// 检验编号 产线代码 + 炉号 + 1位流水
  215. /// </summary>
  216. [Description("工序代码")]
  217. [Nullable(false)]
  218. [DataLength(50)]
  219. public string ProcessCode
  220. {
  221. get { return processCode; }
  222. set { processCode = value; }
  223. }
  224. /// <summary>
  225. /// 检验编号 产线代码 + 炉号 + 1位流水
  226. /// </summary>
  227. [Description("委托类型")]
  228. [Nullable(false)]
  229. [DataLength(50)]
  230. public string CraftSource
  231. {
  232. get { return craftSource; }
  233. set { craftSource = value; }
  234. }
  235. /// <summary>
  236. /// 检验编号 产线代码 + 炉号 + 1位流水
  237. /// </summary>
  238. [Description("试样号")]
  239. [Nullable(false)]
  240. [DataLength(50)]
  241. public string SampleNo
  242. {
  243. get { return sampleNo; }
  244. set { sampleNo = value; }
  245. }
  246. /// <summary>
  247. /// 检验编号 产线代码 + 炉号 + 1位流水
  248. /// </summary>
  249. [Description("检验编号")]
  250. [Nullable(false)]
  251. [DataLength(50)]
  252. public string CheckNo
  253. {
  254. get { return checkNo; }
  255. set { checkNo = value; }
  256. }
  257. /// <summary>
  258. /// 生产批号
  259. /// </summary>
  260. [Description("生产批号")]
  261. [Nullable(true)]
  262. [DataLength(50)]
  263. public string LotNo
  264. {
  265. get { return lotNo; }
  266. set { lotNo = value; }
  267. }
  268. /// <summary>
  269. /// 熔炼炉号
  270. /// </summary>
  271. [Description("熔炼炉号")]
  272. [Nullable(true)]
  273. [DataLength(20)]
  274. public string StoveNo
  275. {
  276. get { return stoveNo; }
  277. set { stoveNo = value; }
  278. }
  279. /// <summary>
  280. /// 炉号 对应JUDGE_STOVE_NO 判定炉号
  281. /// </summary>
  282. [Description("判定炉号")]
  283. [Nullable(true)]
  284. [DataLength(50)]
  285. public string HeatNo
  286. {
  287. get { return heatNo; }
  288. set { heatNo = value; }
  289. }
  290. /// <summary>
  291. /// 钢级
  292. /// </summary>
  293. [Description("钢级")]
  294. [Nullable(true)]
  295. [DataLength(50)]
  296. public string SteelGrade
  297. {
  298. get { return steelGrade; }
  299. set { steelGrade = value; }
  300. }
  301. /// <summary>
  302. /// 钢号
  303. /// </summary>
  304. [Description("钢种")]
  305. [Nullable(true)]
  306. [DataLength(50)]
  307. public string SteelNo
  308. {
  309. get { return steelNo; }
  310. set { steelNo = value; }
  311. }
  312. /// <summary>
  313. /// 品名
  314. /// </summary>
  315. [Description("品名")]
  316. [Nullable(true)]
  317. [DataLength(50)]
  318. public string ProductName
  319. {
  320. get { return productName; }
  321. set { productName = value; }
  322. }
  323. /// <summary>
  324. /// 技术标准(生产标准)
  325. /// </summary>
  326. [Description("技术标准")]
  327. [Nullable(true)]
  328. [DataLength(400)]
  329. public string ProductStd
  330. {
  331. get { return productStd; }
  332. set { productStd = value; }
  333. }
  334. /// <summary>
  335. /// 工艺文件号
  336. /// </summary>
  337. [Description("工艺文件号")]
  338. [Nullable(true)]
  339. [DataLength(400)]
  340. public string CraftFileNo
  341. {
  342. get { return craftFileNo; }
  343. set { craftFileNo = value; }
  344. }
  345. /// <summary>
  346. /// 合同号
  347. /// </summary>
  348. [Description("合同号")]
  349. [Nullable(true)]
  350. [DataLength(50)]
  351. public string ContractNo
  352. {
  353. get { return contractNo; }
  354. set { contractNo = value; }
  355. }
  356. /// <summary>
  357. /// 0为正常,1为重检样,2为复检(样品类型) 对应SAMPLE_TYPE
  358. /// </summary>
  359. [Description("0为正常,1为重检样,2为复检(样品类型) 对应SAMPLE_TYPE ")]
  360. [Nullable(true)]
  361. [DataLength(1)]
  362. public string CheckCount
  363. {
  364. get { return checkCount; }
  365. set { checkCount = value; }
  366. }
  367. /// <summary>
  368. /// 产线代码
  369. /// </summary>
  370. [Description("产线代码")]
  371. [Nullable(true)]
  372. [DataLength(4)]
  373. public string PlineCode
  374. {
  375. get { return plineCode; }
  376. set { plineCode = value; }
  377. }
  378. /// <summary>
  379. /// 产线
  380. /// </summary>
  381. [Description("产线")]
  382. [Nullable(true)]
  383. [DataLength(4)]
  384. public string PlineName
  385. {
  386. get { return plineName; }
  387. set { plineName = value; }
  388. }
  389. /// <summary>
  390. /// 外径
  391. /// </summary>
  392. [Description("外径")]
  393. [Nullable(true)]
  394. [DataLength(20)]
  395. public string Dimater
  396. {
  397. get { return dimater; }
  398. set { dimater = value; }
  399. }
  400. /// <summary>
  401. /// 壁厚
  402. /// </summary>
  403. [Description("壁厚")]
  404. [Nullable(true)]
  405. [DataLength(20)]
  406. public string Height
  407. {
  408. get { return height; }
  409. set { height = value; }
  410. }
  411. /// <summary>
  412. /// 扣型
  413. /// </summary>
  414. [Description("扣型")]
  415. [Nullable(true)]
  416. [DataLength(20)]
  417. public string BuckleType
  418. {
  419. get { return buckleType; }
  420. set { buckleType = value; }
  421. }
  422. /// <summary>
  423. /// 工艺状态
  424. /// </summary>
  425. [Description("工艺状态")]
  426. [Nullable(true)]
  427. [DataLength(20)]
  428. public string ProcessStatus
  429. {
  430. get { return processStatus; }
  431. set { processStatus = value; }
  432. }
  433. /// <summary>
  434. /// 委托单位 对应 CONSIGNER
  435. /// </summary>
  436. [Description("委托单位")]
  437. [Nullable(true)]
  438. [DataLength(100)]
  439. public string ConsignDept
  440. {
  441. get { return consignDept; }
  442. set { consignDept = value; }
  443. }
  444. /// <summary>
  445. /// 委托人(MES为质量下发委托,其他为调度人)
  446. /// </summary>
  447. [Description("委托人")]
  448. [Nullable(true)]
  449. [DataLength(20)]
  450. public string ConsignName
  451. {
  452. get { return consignName; }
  453. set { consignName = value; }
  454. }
  455. /// <summary>
  456. /// 委托时间
  457. /// </summary>
  458. [Description("委托时间")]
  459. [Nullable(true)]
  460. public string ConsignTime
  461. {
  462. get { return consignTime; }
  463. set { consignTime = value; }
  464. }
  465. /// <summary>
  466. /// 是否监制(0为不监制,1为监制)
  467. /// </summary>
  468. [Description("是否监制")]
  469. [Nullable(true)]
  470. [DataLength(1)]
  471. public string Isproducer
  472. {
  473. get { return isproducer; }
  474. set { isproducer = value; }
  475. }
  476. /// <summary>
  477. /// 特殊要求
  478. /// </summary>
  479. [Description("特殊要求")]
  480. [Nullable(true)]
  481. [DataLength(400)]
  482. public string SpecReq
  483. {
  484. get { return specReq; }
  485. set { specReq = value; }
  486. }
  487. /// <summary>
  488. /// 取样人
  489. /// </summary>
  490. [Description("取样人")]
  491. [Nullable(true)]
  492. [DataLength(20)]
  493. public string GetName
  494. {
  495. get { return getName; }
  496. set { getName = value; }
  497. }
  498. /// <summary>
  499. /// 取样时间
  500. /// </summary>
  501. [Description("取样时间")]
  502. [Nullable(true)]
  503. public string GetTime
  504. {
  505. get { return getTime; }
  506. set { getTime = value; }
  507. }
  508. /// <summary>
  509. /// 委托单位送样人
  510. /// </summary>
  511. [Description("委托单位送样人")]
  512. [Nullable(true)]
  513. [DataLength(20)]
  514. public string ConsigndeptSendName
  515. {
  516. get { return consigndeptSendName; }
  517. set { consigndeptSendName = value; }
  518. }
  519. /// <summary>
  520. /// 委托单位送样时间
  521. /// </summary>
  522. [Description("委托单位送样时间")]
  523. [Nullable(true)]
  524. public string ConsigndeptSendTime
  525. {
  526. get { return consigndeptSendTime; }
  527. set { consigndeptSendTime = value; }
  528. }
  529. /// <summary>
  530. /// 加工接样人
  531. /// </summary>
  532. [Description("加工接样人")]
  533. [Nullable(true)]
  534. [DataLength(20)]
  535. public string JgReceiveName
  536. {
  537. get { return jgReceiveName; }
  538. set { jgReceiveName = value; }
  539. }
  540. /// <summary>
  541. /// 加工样品交接时间
  542. /// </summary>
  543. [Description("加工样品交接时间")]
  544. [Nullable(true)]
  545. public string JgReceiveTime
  546. {
  547. get { return jgReceiveTime; }
  548. set { jgReceiveTime = value; }
  549. }
  550. /// <summary>
  551. /// 是否加急(0否)
  552. /// </summary>
  553. [Description("是否加急")]
  554. [Nullable(true)]
  555. [DataLength(1)]
  556. public string IsRush
  557. {
  558. get { return isRush; }
  559. set { isRush = value; }
  560. }
  561. /// <summary>
  562. /// 加急人
  563. /// </summary>
  564. [Description("加急人")]
  565. [Nullable(true)]
  566. [DataLength(20)]
  567. public string RushName
  568. {
  569. get { return rushName; }
  570. set { rushName = value; }
  571. }
  572. /// <summary>
  573. /// 加急时间
  574. /// </summary>
  575. [Description("加急时间")]
  576. [Nullable(true)]
  577. public string RushTime
  578. {
  579. get { return rushTime; }
  580. set { rushTime = value; }
  581. }
  582. /// <summary>
  583. /// 0委托单位未取样,1委托单位正在送样...,2加工已确认
  584. /// </summary>
  585. [Description("状态")]
  586. [Nullable(true)]
  587. [DataLength(1)]
  588. public string Flag
  589. {
  590. get { return flag; }
  591. set { flag = value; }
  592. }
  593. /// <summary>
  594. /// 样品备注
  595. /// </summary>
  596. [Description("样品备注")]
  597. [Nullable(true)]
  598. [DataLength(4000)]
  599. public string SampleRemark
  600. {
  601. get { return sampleRemark; }
  602. set { sampleRemark = value; }
  603. }
  604. /// <summary>
  605. /// 备注
  606. /// </summary>
  607. [Description("备注")]
  608. [Nullable(true)]
  609. [DataLength(400)]
  610. public string Remark
  611. {
  612. get { return remark; }
  613. set { remark = value; }
  614. }
  615. /// <summary>
  616. /// 0生产厂委托,1人工委托
  617. /// </summary>
  618. [Description("0生产厂委托,1人工委托")]
  619. [Nullable(true)]
  620. [DataLength(1)]
  621. public string DataType
  622. {
  623. get { return dataType; }
  624. set { dataType = value; }
  625. }
  626. /// <summary>
  627. /// 数据状态(1有效、无效)
  628. /// </summary>
  629. [Description("数据状态(1有效、无效)")]
  630. [Nullable(true)]
  631. [DataLength(1)]
  632. public string Validflag
  633. {
  634. get { return validflag; }
  635. set { validflag = value; }
  636. }
  637. /// <summary>
  638. /// 工艺文件路径
  639. /// </summary>
  640. [Description("工艺文件路径")]
  641. [Nullable(true)]
  642. [DataLength(400)]
  643. public string CraftPath
  644. {
  645. get { return craftPath; }
  646. set { craftPath = value; }
  647. }
  648. /// <summary>
  649. /// 制造商代码
  650. /// </summary>
  651. private string supplyUnitCode = "";
  652. /// <summary>
  653. /// 制造商
  654. /// </summary>
  655. private string supplyUnit = "";
  656. [Description("制造商代码")]
  657. [Nullable(true)]
  658. [DataLength(400)]
  659. public string SupplyUnitCode
  660. {
  661. get { return supplyUnitCode; }
  662. set { supplyUnitCode = value; }
  663. }
  664. [Description("制造商")]
  665. [Nullable(true)]
  666. [DataLength(400)]
  667. public string SupplyUnit
  668. {
  669. get { return supplyUnit; }
  670. set { supplyUnit = value; }
  671. }
  672. }
  673. }