QcmZgPhyresultEntity.cs 20 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794
  1. using Core.Mes.Client.Comm.Attribute;
  2. using Newtonsoft.Json;
  3. using System;
  4. using System.ComponentModel;
  5. namespace Core.StlMes.Client.Judge.Models
  6. {
  7. /// <summary>
  8. /// 数据库表QCM_ZG_PHYRESULT所对应的实体类(生成工具:代码生成工具4.0 访问地址:http://172.16.2.128/tool/)
  9. /// 作者:tgcx-test 时间:2016-10-09
  10. /// </summary>
  11. public class QcmZgPhyresultEntity
  12. {
  13. /// <summary>
  14. /// 理化判定结果集ID
  15. /// </summary>
  16. private string phyResultId = "";
  17. /// <summary>
  18. /// 结果集序号
  19. /// </summary>
  20. private decimal? phyResultSeq = null;
  21. /// <summary>
  22. /// 生产批号
  23. /// </summary>
  24. private string lotNo = "";
  25. /// <summary>
  26. /// 熔炼炉号
  27. /// </summary>
  28. private string stoveNo = "";
  29. /// <summary>
  30. /// 判定炉号
  31. /// </summary>
  32. private string judgeStoveNo = "";
  33. /// <summary>
  34. /// 性能批号
  35. /// </summary>
  36. private string batchNo = "";
  37. /// <summary>
  38. /// 材料号
  39. /// </summary>
  40. private string objectno = "";
  41. /// <summary>
  42. /// 材质检验项代码(大类)
  43. /// </summary>
  44. private string phyCodeMax = "";
  45. /// <summary>
  46. /// 材质检验项名称(大类)
  47. /// </summary>
  48. private string phyNameMax = "";
  49. /// <summary>
  50. /// 取样码
  51. /// </summary>
  52. private string phyCodeMin = "";
  53. /// <summary>
  54. /// 取样码描述
  55. /// </summary>
  56. private string phyNameMin = "";
  57. /// <summary>
  58. /// 材质检验项代码
  59. /// </summary>
  60. private string phyCode = "";
  61. /// <summary>
  62. /// 材质检验项名称
  63. /// </summary>
  64. private string phyName = "";
  65. /// <summary>
  66. /// 试验方向代码
  67. /// </summary>
  68. private string itemCodeF = "";
  69. /// <summary>
  70. /// 试验方向描述
  71. /// </summary>
  72. private string itemNameF = "";
  73. /// <summary>
  74. /// 试验温度代码
  75. /// </summary>
  76. private string itemCodeW = "";
  77. /// <summary>
  78. /// 试验温度描述
  79. /// </summary>
  80. private string itemNameW = "";
  81. /// <summary>
  82. /// 试样尺寸代码
  83. /// </summary>
  84. private string itemCodeS = "";
  85. /// <summary>
  86. /// 试样尺寸描述
  87. /// </summary>
  88. private string itemNameS = "";
  89. /// <summary>
  90. /// 值1
  91. /// </summary>
  92. private string value1 = "";
  93. /// <summary>
  94. /// 值2
  95. /// </summary>
  96. private string value2 = "";
  97. /// <summary>
  98. /// 值3
  99. /// </summary>
  100. private string value3 = "";
  101. /// <summary>
  102. /// 值4
  103. /// </summary>
  104. private string value4 = "";
  105. /// <summary>
  106. /// 值5
  107. /// </summary>
  108. private string value5 = "";
  109. /// <summary>
  110. /// 值6
  111. /// </summary>
  112. private string value6 = "";
  113. /// <summary>
  114. /// 值7
  115. /// </summary>
  116. private string value7 = "";
  117. /// <summary>
  118. /// 值8
  119. /// </summary>
  120. private string value8 = "";
  121. /// <summary>
  122. /// 值9
  123. /// </summary>
  124. private string value9 = "";
  125. /// <summary>
  126. /// 值10
  127. /// </summary>
  128. private string value10 = "";
  129. /// <summary>
  130. /// 值11
  131. /// </summary>
  132. private string value11 = "";
  133. /// <summary>
  134. /// 值12
  135. /// </summary>
  136. private string value12 = "";
  137. /// <summary>
  138. /// 值13
  139. /// </summary>
  140. private string value13 = "";
  141. /// <summary>
  142. /// 值14
  143. /// </summary>
  144. private string value14 = "";
  145. /// <summary>
  146. /// 值15
  147. /// </summary>
  148. private string value15 = "";
  149. /// <summary>
  150. /// 平均值
  151. /// </summary>
  152. private string average = "";
  153. /// <summary>
  154. /// 值集合('/'拼接)
  155. /// </summary>
  156. private string allresult = "";
  157. /// <summary>
  158. /// 检验编号(QCM_JHY_PHYRESULT)
  159. /// </summary>
  160. private string sampleId = "";
  161. /// <summary>
  162. /// 序号(QCM_JHY_PHYRESULT)
  163. /// </summary>
  164. private decimal? xh = null;
  165. /// <summary>
  166. /// 材质序号(QCM_JHY_PHYRESULT)
  167. /// </summary>
  168. private decimal? indexSeq = null;
  169. /// <summary>
  170. /// 有效标志(1:有效,0:无效)
  171. /// </summary>
  172. private string validflag = "";
  173. /// <summary>
  174. /// 创建人
  175. /// </summary>
  176. private string createName = "";
  177. /// <summary>
  178. /// 创建时间
  179. /// </summary>
  180. private string createTime = "";
  181. /// <summary>
  182. /// 修改人
  183. /// </summary>
  184. private string updateName = "";
  185. /// <summary>
  186. /// 修改时间
  187. /// </summary>
  188. private string updateTime = "";
  189. /// <summary>
  190. /// 删除人
  191. /// </summary>
  192. private string deleteName = "";
  193. /// <summary>
  194. /// 删除时间
  195. /// </summary>
  196. private string deleteTime = "";
  197. /// <summary>
  198. /// 理化判定结果集ID
  199. /// </summary>
  200. [Description("理化判定结果集ID")]
  201. [Nullable(false)]
  202. [DataLength(20)]
  203. [JsonProperty("phyResultId")]
  204. public string PhyResultId
  205. {
  206. get { return phyResultId; }
  207. set { phyResultId = value; }
  208. }
  209. /// <summary>
  210. /// 结果集序号
  211. /// </summary>
  212. [Description("结果集序号")]
  213. [Nullable(false)]
  214. [DataLength(22)]
  215. [JsonProperty("phyResultSeq")]
  216. public decimal? PhyResultSeq
  217. {
  218. get { return phyResultSeq; }
  219. set { phyResultSeq = value; }
  220. }
  221. /// <summary>
  222. /// 生产批号
  223. /// </summary>
  224. [Description("生产批号")]
  225. [Nullable(true)]
  226. [DataLength(20)]
  227. [JsonProperty("lotNo")]
  228. public string LotNo
  229. {
  230. get { return lotNo; }
  231. set { lotNo = value; }
  232. }
  233. /// <summary>
  234. /// 熔炼炉号
  235. /// </summary>
  236. [Description("冶炼炉号")]
  237. [Nullable(true)]
  238. [DataLength(20)]
  239. [JsonProperty("stoveNo")]
  240. public string StoveNo
  241. {
  242. get { return stoveNo; }
  243. set { stoveNo = value; }
  244. }
  245. /// <summary>
  246. /// 判定炉号
  247. /// </summary>
  248. [Description("判定炉号")]
  249. [Nullable(true)]
  250. [DataLength(6)]
  251. [JsonProperty("judgeStoveNo")]
  252. public string JudgeStoveNo
  253. {
  254. get { return judgeStoveNo; }
  255. set { judgeStoveNo = value; }
  256. }
  257. /// <summary>
  258. /// 性能批号
  259. /// </summary>
  260. [Description("性能批号")]
  261. [Nullable(true)]
  262. [DataLength(20)]
  263. [JsonProperty("batchNo")]
  264. public string BatchNo
  265. {
  266. get { return batchNo; }
  267. set { batchNo = value; }
  268. }
  269. /// <summary>
  270. /// 材料号
  271. /// </summary>
  272. [Description("材料号")]
  273. [Nullable(true)]
  274. [DataLength(20)]
  275. [JsonProperty("objectno")]
  276. public string Objectno
  277. {
  278. get { return objectno; }
  279. set { objectno = value; }
  280. }
  281. /// <summary>
  282. /// 材质检验项代码(大类)
  283. /// </summary>
  284. [Description("材质检验项代码(大类)")]
  285. [Nullable(false)]
  286. [DataLength(5)]
  287. [JsonProperty("phyCodeMax")]
  288. public string PhyCodeMax
  289. {
  290. get { return phyCodeMax; }
  291. set { phyCodeMax = value; }
  292. }
  293. /// <summary>
  294. /// 材质检验项名称(大类)
  295. /// </summary>
  296. [Description("检验大项")]
  297. [Nullable(true)]
  298. [DataLength(100)]
  299. [JsonProperty("phyNameMax")]
  300. public string PhyNameMax
  301. {
  302. get { return phyNameMax; }
  303. set { phyNameMax = value; }
  304. }
  305. /// <summary>
  306. /// 取样码
  307. /// </summary>
  308. [Description("取样码")]
  309. [Nullable(false)]
  310. [DataLength(5)]
  311. [JsonProperty("phyCodeMin")]
  312. public string PhyCodeMin
  313. {
  314. get { return phyCodeMin; }
  315. set { phyCodeMin = value; }
  316. }
  317. /// <summary>
  318. /// 取样码描述
  319. /// </summary>
  320. [Description("试样组")]
  321. [Nullable(true)]
  322. [DataLength(100)]
  323. [JsonProperty("phyNameMin")]
  324. public string PhyNameMin
  325. {
  326. get { return phyNameMin; }
  327. set { phyNameMin = value; }
  328. }
  329. /// <summary>
  330. /// 材质检验项代码
  331. /// </summary>
  332. [Description("材质检验项代码")]
  333. [Nullable(false)]
  334. [DataLength(5)]
  335. [JsonProperty("phyCode")]
  336. public string PhyCode
  337. {
  338. get { return phyCode; }
  339. set { phyCode = value; }
  340. }
  341. /// <summary>
  342. /// 材质检验项名称
  343. /// </summary>
  344. [Description("检验项")]
  345. [Nullable(true)]
  346. [DataLength(100)]
  347. [JsonProperty("phyName")]
  348. public string PhyName
  349. {
  350. get { return phyName; }
  351. set { phyName = value; }
  352. }
  353. /// <summary>
  354. /// 试验方向代码
  355. /// </summary>
  356. [Description("试验方向代码")]
  357. [Nullable(true)]
  358. [DataLength(5)]
  359. [JsonProperty("itemCodeF")]
  360. public string ItemCodeF
  361. {
  362. get { return itemCodeF; }
  363. set { itemCodeF = value; }
  364. }
  365. /// <summary>
  366. /// 试验方向描述
  367. /// </summary>
  368. [Description("试验方向")]
  369. [Nullable(true)]
  370. [DataLength(100)]
  371. [JsonProperty("itemNameF")]
  372. public string ItemNameF
  373. {
  374. get { return itemNameF; }
  375. set { itemNameF = value; }
  376. }
  377. /// <summary>
  378. /// 试验温度代码
  379. /// </summary>
  380. [Description("试验温度代码")]
  381. [Nullable(true)]
  382. [DataLength(5)]
  383. [JsonProperty("itemCodeW")]
  384. public string ItemCodeW
  385. {
  386. get { return itemCodeW; }
  387. set { itemCodeW = value; }
  388. }
  389. /// <summary>
  390. /// 试验温度描述
  391. /// </summary>
  392. [Description("试验温度")]
  393. [Nullable(true)]
  394. [DataLength(100)]
  395. [JsonProperty("itemNameW")]
  396. public string ItemNameW
  397. {
  398. get { return itemNameW; }
  399. set { itemNameW = value; }
  400. }
  401. /// <summary>
  402. /// 试样尺寸代码
  403. /// </summary>
  404. [Description("试样尺寸代码")]
  405. [Nullable(true)]
  406. [DataLength(5)]
  407. [JsonProperty("itemCodeS")]
  408. public string ItemCodeS
  409. {
  410. get { return itemCodeS; }
  411. set { itemCodeS = value; }
  412. }
  413. /// <summary>
  414. /// 试样尺寸描述
  415. /// </summary>
  416. [Description("试样尺寸")]
  417. [Nullable(true)]
  418. [DataLength(100)]
  419. [JsonProperty("itemNameS")]
  420. public string ItemNameS
  421. {
  422. get { return itemNameS; }
  423. set { itemNameS = value; }
  424. }
  425. /// <summary>
  426. /// 值1
  427. /// </summary>
  428. [Description("值1")]
  429. [Nullable(false)]
  430. [DataLength(200)]
  431. [JsonProperty("value1")]
  432. public string Value1
  433. {
  434. get { return value1; }
  435. set { value1 = value; }
  436. }
  437. /// <summary>
  438. /// 值2
  439. /// </summary>
  440. [Description("值2")]
  441. [Nullable(true)]
  442. [DataLength(200)]
  443. [JsonProperty("value2")]
  444. public string Value2
  445. {
  446. get { return value2; }
  447. set { value2 = value; }
  448. }
  449. /// <summary>
  450. /// 值3
  451. /// </summary>
  452. [Description("值3")]
  453. [Nullable(true)]
  454. [DataLength(200)]
  455. [JsonProperty("value3")]
  456. public string Value3
  457. {
  458. get { return value3; }
  459. set { value3 = value; }
  460. }
  461. /// <summary>
  462. /// 值4
  463. /// </summary>
  464. [Description("值4")]
  465. [Nullable(true)]
  466. [DataLength(200)]
  467. [JsonProperty("value4")]
  468. public string Value4
  469. {
  470. get { return value4; }
  471. set { value4 = value; }
  472. }
  473. /// <summary>
  474. /// 值5
  475. /// </summary>
  476. [Description("值5")]
  477. [Nullable(true)]
  478. [DataLength(200)]
  479. [JsonProperty("value5")]
  480. public string Value5
  481. {
  482. get { return value5; }
  483. set { value5 = value; }
  484. }
  485. /// <summary>
  486. /// 值6
  487. /// </summary>
  488. [Description("值6")]
  489. [Nullable(true)]
  490. [DataLength(200)]
  491. [JsonProperty("value6")]
  492. public string Value6
  493. {
  494. get { return value6; }
  495. set { value6 = value; }
  496. }
  497. /// <summary>
  498. /// 值7
  499. /// </summary>
  500. [Description("值7")]
  501. [Nullable(true)]
  502. [DataLength(200)]
  503. [JsonProperty("value7")]
  504. public string Value7
  505. {
  506. get { return value7; }
  507. set { value7 = value; }
  508. }
  509. /// <summary>
  510. /// 值8
  511. /// </summary>
  512. [Description("值8")]
  513. [Nullable(true)]
  514. [DataLength(200)]
  515. [JsonProperty("value8")]
  516. public string Value8
  517. {
  518. get { return value8; }
  519. set { value8 = value; }
  520. }
  521. /// <summary>
  522. /// 值9
  523. /// </summary>
  524. [Description("值9")]
  525. [Nullable(true)]
  526. [DataLength(200)]
  527. [JsonProperty("value9")]
  528. public string Value9
  529. {
  530. get { return value9; }
  531. set { value9 = value; }
  532. }
  533. /// <summary>
  534. /// 值10
  535. /// </summary>
  536. [Description("值10")]
  537. [Nullable(true)]
  538. [DataLength(200)]
  539. [JsonProperty("value10")]
  540. public string Value10
  541. {
  542. get { return value10; }
  543. set { value10 = value; }
  544. }
  545. /// <summary>
  546. /// 值11
  547. /// </summary>
  548. [Description("值11")]
  549. [Nullable(true)]
  550. [DataLength(200)]
  551. [JsonProperty("value11")]
  552. public string Value11
  553. {
  554. get { return value11; }
  555. set { value11 = value; }
  556. }
  557. /// <summary>
  558. /// 值12
  559. /// </summary>
  560. [Description("值12")]
  561. [Nullable(true)]
  562. [DataLength(200)]
  563. [JsonProperty("value12")]
  564. public string Value12
  565. {
  566. get { return value12; }
  567. set { value12 = value; }
  568. }
  569. /// <summary>
  570. /// 值13
  571. /// </summary>
  572. [Description("值13")]
  573. [Nullable(true)]
  574. [DataLength(200)]
  575. [JsonProperty("value13")]
  576. public string Value13
  577. {
  578. get { return value13; }
  579. set { value13 = value; }
  580. }
  581. /// <summary>
  582. /// 值14
  583. /// </summary>
  584. [Description("值14")]
  585. [Nullable(true)]
  586. [DataLength(200)]
  587. [JsonProperty("value14")]
  588. public string Value14
  589. {
  590. get { return value14; }
  591. set { value14 = value; }
  592. }
  593. /// <summary>
  594. /// 值15
  595. /// </summary>
  596. [Description("值15")]
  597. [Nullable(true)]
  598. [DataLength(200)]
  599. [JsonProperty("value15")]
  600. public string Value15
  601. {
  602. get { return value15; }
  603. set { value15 = value; }
  604. }
  605. /// <summary>
  606. /// 平均值
  607. /// </summary>
  608. [Description("平均值")]
  609. [Nullable(true)]
  610. [DataLength(200)]
  611. [JsonProperty("average")]
  612. public string Average
  613. {
  614. get { return average; }
  615. set { average = value; }
  616. }
  617. /// <summary>
  618. /// 值集合('/'拼接)
  619. /// </summary>
  620. [Description("值集合")]
  621. [Nullable(true)]
  622. [DataLength(1500)]
  623. [JsonProperty("allresult")]
  624. public string Allresult
  625. {
  626. get { return allresult; }
  627. set { allresult = value; }
  628. }
  629. /// <summary>
  630. /// 检验编号(QCM_JHY_PHYRESULT)
  631. /// </summary>
  632. [Description("检验编号")]
  633. [Nullable(false)]
  634. [DataLength(20)]
  635. [JsonProperty("sampleId")]
  636. public string SampleId
  637. {
  638. get { return sampleId; }
  639. set { sampleId = value; }
  640. }
  641. /// <summary>
  642. /// 序号(QCM_JHY_PHYRESULT)
  643. /// </summary>
  644. [Description("序号")]
  645. [Nullable(false)]
  646. [DataLength(22)]
  647. [JsonProperty("xh")]
  648. public decimal? Xh
  649. {
  650. get { return xh; }
  651. set { xh = value; }
  652. }
  653. /// <summary>
  654. /// 材质序号(QCM_JHY_PHYRESULT)
  655. /// </summary>
  656. [Description("材质序号")]
  657. [Nullable(false)]
  658. [DataLength(22)]
  659. [JsonProperty("indexSeq")]
  660. public decimal? IndexSeq
  661. {
  662. get { return indexSeq; }
  663. set { indexSeq = value; }
  664. }
  665. /// <summary>
  666. /// 有效标志(1:有效,0:无效)
  667. /// </summary>
  668. [Description("有效标志")]
  669. [Nullable(false)]
  670. [DataLength(1)]
  671. [JsonProperty("validflag")]
  672. public string Validflag
  673. {
  674. get { return validflag; }
  675. set { validflag = value; }
  676. }
  677. /// <summary>
  678. /// 创建人
  679. /// </summary>
  680. [Description("创建人")]
  681. [Nullable(true)]
  682. [DataLength(20)]
  683. [JsonProperty("createName")]
  684. public string CreateName
  685. {
  686. get { return createName; }
  687. set { createName = value; }
  688. }
  689. /// <summary>
  690. /// 创建时间
  691. /// </summary>
  692. [Description("创建时间")]
  693. [Nullable(false)]
  694. [JsonProperty("createTime")]
  695. public string CreateTime
  696. {
  697. get { return createTime; }
  698. set { createTime = value; }
  699. }
  700. /// <summary>
  701. /// 修改人
  702. /// </summary>
  703. [Description("修改人")]
  704. [Nullable(true)]
  705. [DataLength(20)]
  706. [JsonProperty("updateName")]
  707. public string UpdateName
  708. {
  709. get { return updateName; }
  710. set { updateName = value; }
  711. }
  712. /// <summary>
  713. /// 修改时间
  714. /// </summary>
  715. [Description("修改时间")]
  716. [Nullable(true)]
  717. [JsonProperty("updateTime")]
  718. public string UpdateTime
  719. {
  720. get { return updateTime; }
  721. set { updateTime = value; }
  722. }
  723. /// <summary>
  724. /// 删除人
  725. /// </summary>
  726. [Description("删除人")]
  727. [Nullable(true)]
  728. [DataLength(20)]
  729. [JsonProperty("deleteName")]
  730. public string DeleteName
  731. {
  732. get { return deleteName; }
  733. set { deleteName = value; }
  734. }
  735. /// <summary>
  736. /// 删除时间
  737. /// </summary>
  738. [Description("删除时间")]
  739. [Nullable(true)]
  740. [JsonProperty("deleteTime")]
  741. public string DeleteTime
  742. {
  743. get { return deleteTime; }
  744. set { deleteTime = value; }
  745. }
  746. }
  747. }