OutdecCheckconsignLabResultEntity.cs 40 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551
  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. /// <summary>
  10. /// 数据库表OUTDEC_CHECKCONSIGN_LAB_RESULT所对应的实体类(生成工具:代码生成工具3.0)
  11. /// 作者:PC-20160918TFRG 时间:2018-06-22
  12. /// </summary>
  13. public class OutdecCheckconsignLabResultEntity
  14. {
  15. /// <summary>
  16. /// 检验编号
  17. /// </summary>
  18. private string checkNo = "";
  19. /// <summary>
  20. /// 试样号 样管号 产线字母+年+月+四位流水 产线字母+YYMM+四位流水
  21. /// </summary>
  22. private string sampleNo = "";
  23. /// <summary>
  24. /// 试样组代码
  25. /// </summary>
  26. private string phyCodeMax = "";
  27. /// <summary>
  28. /// 技术标准
  29. /// </summary>
  30. private string technicalStandard = "";
  31. /// <summary>
  32. /// 试样脱脂方法
  33. /// </summary>
  34. private string degreasingMethod = "";
  35. /// <summary>
  36. /// 通入H2S前NACE-A溶液pH值
  37. /// </summary>
  38. private string nacePh = "";
  39. /// <summary>
  40. /// 试验开始NACE-A溶液pH值
  41. /// </summary>
  42. private string nacePhS = "";
  43. /// <summary>
  44. /// 试验结束NACE-A溶液pH值
  45. /// </summary>
  46. private string nacePhF = "";
  47. /// <summary>
  48. /// 试验开始NACE-A溶液H2S浓度(mg/L)
  49. /// </summary>
  50. private string naceSolutionS = "";
  51. /// <summary>
  52. /// 试验结束NACE-A溶液H2S浓度(mg/L)
  53. /// </summary>
  54. private string naceSolutionF = "";
  55. /// <summary>
  56. /// 试验温度
  57. /// </summary>
  58. private string testTemp = "";
  59. /// <summary>
  60. /// 试样尺寸1
  61. /// </summary>
  62. private string specimenSize1 = "";
  63. /// <summary>
  64. /// 试样尺寸2
  65. /// </summary>
  66. private string specimenSize2 = "";
  67. /// <summary>
  68. /// 试样尺寸3
  69. /// </summary>
  70. private string specimenSize3 = "";
  71. /// <summary>
  72. /// 试验持续时间1
  73. /// </summary>
  74. private string testDuration1 = "";
  75. /// <summary>
  76. /// 试验持续时间2
  77. /// </summary>
  78. private string testDuration2 = "";
  79. /// <summary>
  80. /// 试验持续时间3
  81. /// </summary>
  82. private string testDuration3 = "";
  83. /// <summary>
  84. /// 假定应力
  85. /// </summary>
  86. private string pseudoStress = "";
  87. /// <summary>
  88. /// 应力环号1
  89. /// </summary>
  90. private string proofRingNo1 = "";
  91. /// <summary>
  92. /// 应力环号2
  93. /// </summary>
  94. private string proofRingNo2 = "";
  95. /// <summary>
  96. /// 应力环号3
  97. /// </summary>
  98. private string proofRingNo3 = "";
  99. /// <summary>
  100. /// 名义最小屈服强度1
  101. /// </summary>
  102. private string ysmin1 = "";
  103. /// <summary>
  104. /// 名义最小屈服强度2
  105. /// </summary>
  106. private string ysmin2 = "";
  107. /// <summary>
  108. /// 名义最小屈服强度3
  109. /// </summary>
  110. private string ysmin3 = "";
  111. /// <summary>
  112. /// 实际加载挠度1
  113. /// </summary>
  114. private string actualLoad1 = "";
  115. /// <summary>
  116. /// 实际加载挠度2
  117. /// </summary>
  118. private string actualLoad2 = "";
  119. /// <summary>
  120. /// 实际加载挠度3
  121. /// </summary>
  122. private string actualLoad3 = "";
  123. /// <summary>
  124. /// 实际载荷比率1
  125. /// </summary>
  126. private string actualSYsmin1 = "";
  127. /// <summary>
  128. /// 实际载荷比率2
  129. /// </summary>
  130. private string actualSYsmin2 = "";
  131. /// <summary>
  132. /// 实际载荷比率3
  133. /// </summary>
  134. private string actualSYsmin3 = "";
  135. /// <summary>
  136. /// 悬壁位移1
  137. /// </summary>
  138. private string armDisplacement1 = "";
  139. /// <summary>
  140. /// 悬壁位移2
  141. /// </summary>
  142. private string armDisplacement2 = "";
  143. /// <summary>
  144. /// 悬壁位移3
  145. /// </summary>
  146. private string armDisplacement3 = "";
  147. /// <summary>
  148. /// 裂纹长度1
  149. /// </summary>
  150. private string crackLength1 = "";
  151. /// <summary>
  152. /// 裂纹长度2
  153. /// </summary>
  154. private string crackLength2 = "";
  155. /// <summary>
  156. /// 裂纹长度3
  157. /// </summary>
  158. private string crackLength3 = "";
  159. /// <summary>
  160. /// 试验条件备注
  161. /// </summary>
  162. private string note = "";
  163. /// <summary>
  164. /// 试样号1(小)
  165. /// </summary>
  166. private string sampleNo1 = "";
  167. /// <summary>
  168. /// 试样号2(小)
  169. /// </summary>
  170. private string sampleNo2 = "";
  171. /// <summary>
  172. /// 试样号3(小)
  173. /// </summary>
  174. private string sampleNo3 = "";
  175. /// <summary>
  176. /// 试验溶液
  177. /// </summary>
  178. private string testSolution = "";
  179. /// <summary>
  180. /// 试样表面积1(cm2)
  181. /// </summary>
  182. private string surfaceArea1 = "";
  183. /// <summary>
  184. /// 试样表面积2(cm2)
  185. /// </summary>
  186. private string surfaceArea2 = "";
  187. /// <summary>
  188. /// 试样表面积3(cm2)
  189. /// </summary>
  190. private string surfaceArea3 = "";
  191. /// <summary>
  192. /// 试验前试样质量1(g)
  193. /// </summary>
  194. private string weightBeforeTest1 = "";
  195. /// <summary>
  196. /// 试验前试样质量2(g)
  197. /// </summary>
  198. private string weightBeforeTest2 = "";
  199. /// <summary>
  200. /// 试验前试样质量3(g)
  201. /// </summary>
  202. private string weightBeforeTest3 = "";
  203. /// <summary>
  204. /// 试样后试样质量1(g)
  205. /// </summary>
  206. private string weightAfterTest1 = "";
  207. /// <summary>
  208. /// 试样后试样质量2(g)
  209. /// </summary>
  210. private string weightAfterTest2 = "";
  211. /// <summary>
  212. /// 试样后试样质量3(g)
  213. /// </summary>
  214. private string weightAfterTest3 = "";
  215. /// <summary>
  216. /// 失重1(g)
  217. /// </summary>
  218. private string lossOfWeight1 = "";
  219. /// <summary>
  220. /// 失重2(g)
  221. /// </summary>
  222. private string lossOfWeight2 = "";
  223. /// <summary>
  224. /// 失重3(g)
  225. /// </summary>
  226. private string lossOfWeight3 = "";
  227. /// <summary>
  228. /// 质量损失1(g/cm2)
  229. /// </summary>
  230. private string massLoss1 = "";
  231. /// <summary>
  232. /// 质量损失2(g/cm2)
  233. /// </summary>
  234. private string massLoss2 = "";
  235. /// <summary>
  236. /// 质量损失3(g/cm2)
  237. /// </summary>
  238. private string massLoss3 = "";
  239. /// <summary>
  240. /// 点蚀密度1(个/cm2)
  241. /// </summary>
  242. private string pittingDensity1 = "";
  243. /// <summary>
  244. /// 点蚀密度2(个/cm2)
  245. /// </summary>
  246. private string pittingDensity2 = "";
  247. /// <summary>
  248. /// 点蚀密度3(个/cm2)
  249. /// </summary>
  250. private string pittingDensity3 = "";
  251. /// <summary>
  252. /// 实际载荷1(N)
  253. /// </summary>
  254. private string actualLoadD1 = "";
  255. /// <summary>
  256. /// 实际载荷2(N)
  257. /// </summary>
  258. private string actualLoadD2 = "";
  259. /// <summary>
  260. /// 实际载荷3(N)
  261. /// </summary>
  262. private string actualLoadD3 = "";
  263. /// <summary>
  264. /// 试样清洗
  265. /// </summary>
  266. private string cleaningSample = "";
  267. /// <summary>
  268. /// SSC溶液名称
  269. /// </summary>
  270. private string aqueous = "";
  271. /// <summary>
  272. /// 试验条件2备注
  273. /// </summary>
  274. private string note2 = "";
  275. /// <summary>
  276. /// 试验条件3备注
  277. /// </summary>
  278. private string note3 = "";
  279. /// <summary>
  280. /// 试验条件1
  281. /// </summary>
  282. private string testConditions1 = "";
  283. /// <summary>
  284. /// 试验条件2
  285. /// </summary>
  286. private string testConditions2 = "";
  287. /// <summary>
  288. /// 试验条件3
  289. /// </summary>
  290. private string testConditions3 = "";
  291. /// <summary>
  292. /// 试样取向
  293. /// </summary>
  294. private string specimenOrientation = "";
  295. /// <summary>
  296. /// 试样类型
  297. /// </summary>
  298. private string specimenType = "";
  299. /// <summary>
  300. /// 试样宽度
  301. /// </summary>
  302. private string specimenWidth = "";
  303. /// <summary>
  304. /// 试样厚度
  305. /// </summary>
  306. private string specimenDepth = "";
  307. /// <summary>
  308. /// 缺口形状
  309. /// </summary>
  310. private string shapeOfNotch = "";
  311. /// <summary>
  312. /// 缺口深度
  313. /// </summary>
  314. private string notchDepth = "";
  315. /// <summary>
  316. /// 硬度类别
  317. /// </summary>
  318. private string hardnessType = "";
  319. /// <summary>
  320. /// 结果评定
  321. /// </summary>
  322. private string testResults = "";
  323. /// <summary>
  324. /// 扣型
  325. /// </summary>
  326. private string connection = "";
  327. /// <summary>
  328. /// 试验湿度
  329. /// </summary>
  330. private string checkDampness = "";
  331. /// <summary>
  332. /// 试验项目
  333. /// </summary>
  334. private string testItem = "";
  335. /// <summary>
  336. /// 沉降率(ml/h)
  337. /// </summary>
  338. private string collectionRate = "";
  339. /// <summary>
  340. /// 喷雾类型
  341. /// </summary>
  342. private string sprayType = "";
  343. /// <summary>
  344. /// 放置角度(°)
  345. /// </summary>
  346. private string angle = "";
  347. /// <summary>
  348. /// 试板形状
  349. /// </summary>
  350. private string sampleType = "";
  351. /// <summary>
  352. /// 溶液(收集)浓度
  353. /// </summary>
  354. private string concentration = "";
  355. /// <summary>
  356. /// 试验日期
  357. /// </summary>
  358. private string testDate = "";
  359. /// <summary>
  360. /// 报出日期
  361. /// </summary>
  362. private string reportedDate = "";
  363. /// <summary>
  364. /// 报出人
  365. /// </summary>
  366. private string reportedName = "";
  367. /// <summary>
  368. /// 复核人
  369. /// </summary>
  370. private string approvedName = "";
  371. /// <summary>
  372. /// 图片1
  373. /// </summary>
  374. private string filePath1 = "";
  375. /// <summary>
  376. /// 图片2
  377. /// </summary>
  378. private string filePath2 = "";
  379. /// <summary>
  380. /// 图片3
  381. /// </summary>
  382. private string filePath3 = "";
  383. /// <summary>
  384. /// 图片4
  385. /// </summary>
  386. private string filePath4 = "";
  387. /// <summary>
  388. /// 图片5
  389. /// </summary>
  390. private string filePath5 = "";
  391. /// <summary>
  392. /// 图片6
  393. /// </summary>
  394. private string filePath6 = "";
  395. /// <summary>
  396. /// 图片7
  397. /// </summary>
  398. private string filePath7 = "";
  399. /// <summary>
  400. /// 检验编号
  401. /// </summary>
  402. [Description("检验编号")]
  403. [Nullable(false)]
  404. [DataLength(50)]
  405. public string CheckNo
  406. {
  407. get { return checkNo; }
  408. set { checkNo = value; }
  409. }
  410. /// <summary>
  411. /// 试样号 样管号 产线字母+年+月+四位流水 产线字母+YYMM+四位流水
  412. /// </summary>
  413. [Description("试样号 样管号 产线字母+年+月+四位流水 产线字母+YYMM+四位流水")]
  414. [Nullable(false)]
  415. [DataLength(50)]
  416. public string SampleNo
  417. {
  418. get { return sampleNo; }
  419. set { sampleNo = value; }
  420. }
  421. /// <summary>
  422. /// 试样组代码
  423. /// </summary>
  424. [Description("试样组代码")]
  425. [Nullable(false)]
  426. [DataLength(50)]
  427. public string PhyCodeMax
  428. {
  429. get { return phyCodeMax; }
  430. set { phyCodeMax = value; }
  431. }
  432. /// <summary>
  433. /// 技术标准
  434. /// </summary>
  435. [Description("技术标准")]
  436. [Nullable(true)]
  437. [DataLength(400)]
  438. public string TechnicalStandard
  439. {
  440. get { return technicalStandard; }
  441. set { technicalStandard = value; }
  442. }
  443. /// <summary>
  444. /// 试样脱脂方法
  445. /// </summary>
  446. [Description("试样脱脂方法")]
  447. [Nullable(true)]
  448. [DataLength(400)]
  449. public string DegreasingMethod
  450. {
  451. get { return degreasingMethod; }
  452. set { degreasingMethod = value; }
  453. }
  454. /// <summary>
  455. /// 通入H2S前NACE-A溶液pH值
  456. /// </summary>
  457. [Description("通入H2S前NACE-A溶液pH值")]
  458. [Nullable(true)]
  459. [DataLength(400)]
  460. public string NacePh
  461. {
  462. get { return nacePh; }
  463. set { nacePh = value; }
  464. }
  465. /// <summary>
  466. /// 试验开始NACE-A溶液pH值
  467. /// </summary>
  468. [Description("试验开始NACE-A溶液pH值")]
  469. [Nullable(true)]
  470. [DataLength(400)]
  471. public string NacePhS
  472. {
  473. get { return nacePhS; }
  474. set { nacePhS = value; }
  475. }
  476. /// <summary>
  477. /// 试验结束NACE-A溶液pH值
  478. /// </summary>
  479. [Description("试验结束NACE-A溶液pH值")]
  480. [Nullable(true)]
  481. [DataLength(400)]
  482. public string NacePhF
  483. {
  484. get { return nacePhF; }
  485. set { nacePhF = value; }
  486. }
  487. /// <summary>
  488. /// 试验开始NACE-A溶液H2S浓度(mg/L)
  489. /// </summary>
  490. [Description("试验开始NACE-A溶液H2S浓度(mg/L)")]
  491. [Nullable(true)]
  492. [DataLength(400)]
  493. public string NaceSolutionS
  494. {
  495. get { return naceSolutionS; }
  496. set { naceSolutionS = value; }
  497. }
  498. /// <summary>
  499. /// 试验结束NACE-A溶液H2S浓度(mg/L)
  500. /// </summary>
  501. [Description("试验结束NACE-A溶液H2S浓度(mg/L)")]
  502. [Nullable(true)]
  503. [DataLength(400)]
  504. public string NaceSolutionF
  505. {
  506. get { return naceSolutionF; }
  507. set { naceSolutionF = value; }
  508. }
  509. /// <summary>
  510. /// 试验温度
  511. /// </summary>
  512. [Description("试验温度")]
  513. [Nullable(true)]
  514. [DataLength(400)]
  515. public string TestTemp
  516. {
  517. get { return testTemp; }
  518. set { testTemp = value; }
  519. }
  520. /// <summary>
  521. /// 试样尺寸1
  522. /// </summary>
  523. [Description("试样尺寸1")]
  524. [Nullable(true)]
  525. [DataLength(400)]
  526. public string SpecimenSize1
  527. {
  528. get { return specimenSize1; }
  529. set { specimenSize1 = value; }
  530. }
  531. /// <summary>
  532. /// 试样尺寸2
  533. /// </summary>
  534. [Description("试样尺寸2")]
  535. [Nullable(true)]
  536. [DataLength(400)]
  537. public string SpecimenSize2
  538. {
  539. get { return specimenSize2; }
  540. set { specimenSize2 = value; }
  541. }
  542. /// <summary>
  543. /// 试样尺寸3
  544. /// </summary>
  545. [Description("试样尺寸3")]
  546. [Nullable(true)]
  547. [DataLength(400)]
  548. public string SpecimenSize3
  549. {
  550. get { return specimenSize3; }
  551. set { specimenSize3 = value; }
  552. }
  553. /// <summary>
  554. /// 试验持续时间1
  555. /// </summary>
  556. [Description("试验持续时间1")]
  557. [Nullable(true)]
  558. [DataLength(400)]
  559. public string TestDuration1
  560. {
  561. get { return testDuration1; }
  562. set { testDuration1 = value; }
  563. }
  564. /// <summary>
  565. /// 试验持续时间2
  566. /// </summary>
  567. [Description("试验持续时间2")]
  568. [Nullable(true)]
  569. [DataLength(400)]
  570. public string TestDuration2
  571. {
  572. get { return testDuration2; }
  573. set { testDuration2 = value; }
  574. }
  575. /// <summary>
  576. /// 试验持续时间3
  577. /// </summary>
  578. [Description("试验持续时间3")]
  579. [Nullable(true)]
  580. [DataLength(400)]
  581. public string TestDuration3
  582. {
  583. get { return testDuration3; }
  584. set { testDuration3 = value; }
  585. }
  586. /// <summary>
  587. /// 假定应力
  588. /// </summary>
  589. [Description("假定应力")]
  590. [Nullable(true)]
  591. [DataLength(400)]
  592. public string PseudoStress
  593. {
  594. get { return pseudoStress; }
  595. set { pseudoStress = value; }
  596. }
  597. /// <summary>
  598. /// 应力环号1
  599. /// </summary>
  600. [Description("应力环号1")]
  601. [Nullable(true)]
  602. [DataLength(400)]
  603. public string ProofRingNo1
  604. {
  605. get { return proofRingNo1; }
  606. set { proofRingNo1 = value; }
  607. }
  608. /// <summary>
  609. /// 应力环号2
  610. /// </summary>
  611. [Description("应力环号2")]
  612. [Nullable(true)]
  613. [DataLength(400)]
  614. public string ProofRingNo2
  615. {
  616. get { return proofRingNo2; }
  617. set { proofRingNo2 = value; }
  618. }
  619. /// <summary>
  620. /// 应力环号3
  621. /// </summary>
  622. [Description("应力环号3")]
  623. [Nullable(true)]
  624. [DataLength(400)]
  625. public string ProofRingNo3
  626. {
  627. get { return proofRingNo3; }
  628. set { proofRingNo3 = value; }
  629. }
  630. /// <summary>
  631. /// 名义最小屈服强度1
  632. /// </summary>
  633. [Description("名义最小屈服强度1")]
  634. [Nullable(true)]
  635. [DataLength(400)]
  636. public string Ysmin1
  637. {
  638. get { return ysmin1; }
  639. set { ysmin1 = value; }
  640. }
  641. /// <summary>
  642. /// 名义最小屈服强度2
  643. /// </summary>
  644. [Description("名义最小屈服强度2")]
  645. [Nullable(true)]
  646. [DataLength(400)]
  647. public string Ysmin2
  648. {
  649. get { return ysmin2; }
  650. set { ysmin2 = value; }
  651. }
  652. /// <summary>
  653. /// 名义最小屈服强度3
  654. /// </summary>
  655. [Description("名义最小屈服强度3")]
  656. [Nullable(true)]
  657. [DataLength(400)]
  658. public string Ysmin3
  659. {
  660. get { return ysmin3; }
  661. set { ysmin3 = value; }
  662. }
  663. /// <summary>
  664. /// 实际加载挠度1
  665. /// </summary>
  666. [Description("实际加载挠度1")]
  667. [Nullable(true)]
  668. [DataLength(400)]
  669. public string ActualLoad1
  670. {
  671. get { return actualLoad1; }
  672. set { actualLoad1 = value; }
  673. }
  674. /// <summary>
  675. /// 实际加载挠度2
  676. /// </summary>
  677. [Description("实际加载挠度2")]
  678. [Nullable(true)]
  679. [DataLength(400)]
  680. public string ActualLoad2
  681. {
  682. get { return actualLoad2; }
  683. set { actualLoad2 = value; }
  684. }
  685. /// <summary>
  686. /// 实际加载挠度3
  687. /// </summary>
  688. [Description("实际加载挠度3")]
  689. [Nullable(true)]
  690. [DataLength(400)]
  691. public string ActualLoad3
  692. {
  693. get { return actualLoad3; }
  694. set { actualLoad3 = value; }
  695. }
  696. /// <summary>
  697. /// 实际载荷比率1
  698. /// </summary>
  699. [Description("实际载荷比率1")]
  700. [Nullable(true)]
  701. [DataLength(400)]
  702. public string ActualSYsmin1
  703. {
  704. get { return actualSYsmin1; }
  705. set { actualSYsmin1 = value; }
  706. }
  707. /// <summary>
  708. /// 实际载荷比率2
  709. /// </summary>
  710. [Description("实际载荷比率2")]
  711. [Nullable(true)]
  712. [DataLength(400)]
  713. public string ActualSYsmin2
  714. {
  715. get { return actualSYsmin2; }
  716. set { actualSYsmin2 = value; }
  717. }
  718. /// <summary>
  719. /// 实际载荷比率3
  720. /// </summary>
  721. [Description("实际载荷比率3")]
  722. [Nullable(true)]
  723. [DataLength(400)]
  724. public string ActualSYsmin3
  725. {
  726. get { return actualSYsmin3; }
  727. set { actualSYsmin3 = value; }
  728. }
  729. /// <summary>
  730. /// 悬壁位移1
  731. /// </summary>
  732. [Description("悬壁位移1")]
  733. [Nullable(true)]
  734. [DataLength(400)]
  735. public string ArmDisplacement1
  736. {
  737. get { return armDisplacement1; }
  738. set { armDisplacement1 = value; }
  739. }
  740. /// <summary>
  741. /// 悬壁位移2
  742. /// </summary>
  743. [Description("悬壁位移2")]
  744. [Nullable(true)]
  745. [DataLength(400)]
  746. public string ArmDisplacement2
  747. {
  748. get { return armDisplacement2; }
  749. set { armDisplacement2 = value; }
  750. }
  751. /// <summary>
  752. /// 悬壁位移3
  753. /// </summary>
  754. [Description("悬壁位移3")]
  755. [Nullable(true)]
  756. [DataLength(400)]
  757. public string ArmDisplacement3
  758. {
  759. get { return armDisplacement3; }
  760. set { armDisplacement3 = value; }
  761. }
  762. /// <summary>
  763. /// 裂纹长度1
  764. /// </summary>
  765. [Description("裂纹长度1")]
  766. [Nullable(true)]
  767. [DataLength(400)]
  768. public string CrackLength1
  769. {
  770. get { return crackLength1; }
  771. set { crackLength1 = value; }
  772. }
  773. /// <summary>
  774. /// 裂纹长度2
  775. /// </summary>
  776. [Description("裂纹长度2")]
  777. [Nullable(true)]
  778. [DataLength(400)]
  779. public string CrackLength2
  780. {
  781. get { return crackLength2; }
  782. set { crackLength2 = value; }
  783. }
  784. /// <summary>
  785. /// 裂纹长度3
  786. /// </summary>
  787. [Description("裂纹长度3")]
  788. [Nullable(true)]
  789. [DataLength(400)]
  790. public string CrackLength3
  791. {
  792. get { return crackLength3; }
  793. set { crackLength3 = value; }
  794. }
  795. /// <summary>
  796. /// 试验条件备注
  797. /// </summary>
  798. [Description("试验条件备注")]
  799. [Nullable(true)]
  800. [DataLength(400)]
  801. public string Note
  802. {
  803. get { return note; }
  804. set { note = value; }
  805. }
  806. /// <summary>
  807. /// 试样号1(小)
  808. /// </summary>
  809. [Description("试样号1(小)")]
  810. [Nullable(true)]
  811. [DataLength(50)]
  812. public string SampleNo1
  813. {
  814. get { return sampleNo1; }
  815. set { sampleNo1 = value; }
  816. }
  817. /// <summary>
  818. /// 试样号2(小)
  819. /// </summary>
  820. [Description("试样号2(小)")]
  821. [Nullable(true)]
  822. [DataLength(50)]
  823. public string SampleNo2
  824. {
  825. get { return sampleNo2; }
  826. set { sampleNo2 = value; }
  827. }
  828. /// <summary>
  829. /// 试样号3(小)
  830. /// </summary>
  831. [Description("试样号3(小)")]
  832. [Nullable(true)]
  833. [DataLength(50)]
  834. public string SampleNo3
  835. {
  836. get { return sampleNo3; }
  837. set { sampleNo3 = value; }
  838. }
  839. /// <summary>
  840. /// 试验溶液
  841. /// </summary>
  842. [Description("试验溶液")]
  843. [Nullable(true)]
  844. [DataLength(400)]
  845. public string TestSolution
  846. {
  847. get { return testSolution; }
  848. set { testSolution = value; }
  849. }
  850. /// <summary>
  851. /// 试样表面积1(cm2)
  852. /// </summary>
  853. [Description("试样表面积1(cm2)")]
  854. [Nullable(true)]
  855. [DataLength(400)]
  856. public string SurfaceArea1
  857. {
  858. get { return surfaceArea1; }
  859. set { surfaceArea1 = value; }
  860. }
  861. /// <summary>
  862. /// 试样表面积2(cm2)
  863. /// </summary>
  864. [Description("试样表面积2(cm2)")]
  865. [Nullable(true)]
  866. [DataLength(400)]
  867. public string SurfaceArea2
  868. {
  869. get { return surfaceArea2; }
  870. set { surfaceArea2 = value; }
  871. }
  872. /// <summary>
  873. /// 试样表面积3(cm2)
  874. /// </summary>
  875. [Description("试样表面积3(cm2)")]
  876. [Nullable(true)]
  877. [DataLength(400)]
  878. public string SurfaceArea3
  879. {
  880. get { return surfaceArea3; }
  881. set { surfaceArea3 = value; }
  882. }
  883. /// <summary>
  884. /// 试验前试样质量1(g)
  885. /// </summary>
  886. [Description("试验前试样质量1(g)")]
  887. [Nullable(true)]
  888. [DataLength(400)]
  889. public string WeightBeforeTest1
  890. {
  891. get { return weightBeforeTest1; }
  892. set { weightBeforeTest1 = value; }
  893. }
  894. /// <summary>
  895. /// 试验前试样质量2(g)
  896. /// </summary>
  897. [Description("试验前试样质量2(g)")]
  898. [Nullable(true)]
  899. [DataLength(400)]
  900. public string WeightBeforeTest2
  901. {
  902. get { return weightBeforeTest2; }
  903. set { weightBeforeTest2 = value; }
  904. }
  905. /// <summary>
  906. /// 试验前试样质量3(g)
  907. /// </summary>
  908. [Description("试验前试样质量3(g)")]
  909. [Nullable(true)]
  910. [DataLength(400)]
  911. public string WeightBeforeTest3
  912. {
  913. get { return weightBeforeTest3; }
  914. set { weightBeforeTest3 = value; }
  915. }
  916. /// <summary>
  917. /// 试样后试样质量1(g)
  918. /// </summary>
  919. [Description("试样后试样质量1(g)")]
  920. [Nullable(true)]
  921. [DataLength(400)]
  922. public string WeightAfterTest1
  923. {
  924. get { return weightAfterTest1; }
  925. set { weightAfterTest1 = value; }
  926. }
  927. /// <summary>
  928. /// 试样后试样质量2(g)
  929. /// </summary>
  930. [Description("试样后试样质量2(g)")]
  931. [Nullable(true)]
  932. [DataLength(400)]
  933. public string WeightAfterTest2
  934. {
  935. get { return weightAfterTest2; }
  936. set { weightAfterTest2 = value; }
  937. }
  938. /// <summary>
  939. /// 试样后试样质量3(g)
  940. /// </summary>
  941. [Description("试样后试样质量3(g)")]
  942. [Nullable(true)]
  943. [DataLength(400)]
  944. public string WeightAfterTest3
  945. {
  946. get { return weightAfterTest3; }
  947. set { weightAfterTest3 = value; }
  948. }
  949. /// <summary>
  950. /// 失重1(g)
  951. /// </summary>
  952. [Description("失重1(g)")]
  953. [Nullable(true)]
  954. [DataLength(400)]
  955. public string LossOfWeight1
  956. {
  957. get { return lossOfWeight1; }
  958. set { lossOfWeight1 = value; }
  959. }
  960. /// <summary>
  961. /// 失重2(g)
  962. /// </summary>
  963. [Description("失重2(g)")]
  964. [Nullable(true)]
  965. [DataLength(400)]
  966. public string LossOfWeight2
  967. {
  968. get { return lossOfWeight2; }
  969. set { lossOfWeight2 = value; }
  970. }
  971. /// <summary>
  972. /// 失重3(g)
  973. /// </summary>
  974. [Description("失重3(g)")]
  975. [Nullable(true)]
  976. [DataLength(400)]
  977. public string LossOfWeight3
  978. {
  979. get { return lossOfWeight3; }
  980. set { lossOfWeight3 = value; }
  981. }
  982. /// <summary>
  983. /// 质量损失1(g/cm2)
  984. /// </summary>
  985. [Description("质量损失1(g/cm2)")]
  986. [Nullable(true)]
  987. [DataLength(400)]
  988. public string MassLoss1
  989. {
  990. get { return massLoss1; }
  991. set { massLoss1 = value; }
  992. }
  993. /// <summary>
  994. /// 质量损失2(g/cm2)
  995. /// </summary>
  996. [Description("质量损失2(g/cm2)")]
  997. [Nullable(true)]
  998. [DataLength(400)]
  999. public string MassLoss2
  1000. {
  1001. get { return massLoss2; }
  1002. set { massLoss2 = value; }
  1003. }
  1004. /// <summary>
  1005. /// 质量损失3(g/cm2)
  1006. /// </summary>
  1007. [Description("质量损失3(g/cm2)")]
  1008. [Nullable(true)]
  1009. [DataLength(400)]
  1010. public string MassLoss3
  1011. {
  1012. get { return massLoss3; }
  1013. set { massLoss3 = value; }
  1014. }
  1015. /// <summary>
  1016. /// 点蚀密度1(个/cm2)
  1017. /// </summary>
  1018. [Description("点蚀密度1(个/cm2)")]
  1019. [Nullable(true)]
  1020. [DataLength(400)]
  1021. public string PittingDensity1
  1022. {
  1023. get { return pittingDensity1; }
  1024. set { pittingDensity1 = value; }
  1025. }
  1026. /// <summary>
  1027. /// 点蚀密度2(个/cm2)
  1028. /// </summary>
  1029. [Description("点蚀密度2(个/cm2)")]
  1030. [Nullable(true)]
  1031. [DataLength(400)]
  1032. public string PittingDensity2
  1033. {
  1034. get { return pittingDensity2; }
  1035. set { pittingDensity2 = value; }
  1036. }
  1037. /// <summary>
  1038. /// 点蚀密度3(个/cm2)
  1039. /// </summary>
  1040. [Description("点蚀密度3(个/cm2)")]
  1041. [Nullable(true)]
  1042. [DataLength(400)]
  1043. public string PittingDensity3
  1044. {
  1045. get { return pittingDensity3; }
  1046. set { pittingDensity3 = value; }
  1047. }
  1048. /// <summary>
  1049. /// 实际载荷1(N)
  1050. /// </summary>
  1051. [Description("实际载荷1(N)")]
  1052. [Nullable(true)]
  1053. [DataLength(400)]
  1054. public string ActualLoadD1
  1055. {
  1056. get { return actualLoadD1; }
  1057. set { actualLoadD1 = value; }
  1058. }
  1059. /// <summary>
  1060. /// 实际载荷2(N)
  1061. /// </summary>
  1062. [Description("实际载荷2(N)")]
  1063. [Nullable(true)]
  1064. [DataLength(400)]
  1065. public string ActualLoadD2
  1066. {
  1067. get { return actualLoadD2; }
  1068. set { actualLoadD2 = value; }
  1069. }
  1070. /// <summary>
  1071. /// 实际载荷3(N)
  1072. /// </summary>
  1073. [Description("实际载荷3(N)")]
  1074. [Nullable(true)]
  1075. [DataLength(400)]
  1076. public string ActualLoadD3
  1077. {
  1078. get { return actualLoadD3; }
  1079. set { actualLoadD3 = value; }
  1080. }
  1081. /// <summary>
  1082. /// 试样清洗
  1083. /// </summary>
  1084. [Description("试样清洗")]
  1085. [Nullable(true)]
  1086. [DataLength(400)]
  1087. public string CleaningSample
  1088. {
  1089. get { return cleaningSample; }
  1090. set { cleaningSample = value; }
  1091. }
  1092. /// <summary>
  1093. /// SSC溶液名称
  1094. /// </summary>
  1095. [Description("SSC溶液名称")]
  1096. [Nullable(true)]
  1097. [DataLength(20)]
  1098. public string Aqueous
  1099. {
  1100. get { return aqueous; }
  1101. set { aqueous = value; }
  1102. }
  1103. /// <summary>
  1104. /// 试验条件2备注
  1105. /// </summary>
  1106. [Description("试验条件2备注")]
  1107. [Nullable(true)]
  1108. [DataLength(400)]
  1109. public string Note2
  1110. {
  1111. get { return note2; }
  1112. set { note2 = value; }
  1113. }
  1114. /// <summary>
  1115. /// 试验条件3备注
  1116. /// </summary>
  1117. [Description("试验条件3备注")]
  1118. [Nullable(true)]
  1119. [DataLength(400)]
  1120. public string Note3
  1121. {
  1122. get { return note3; }
  1123. set { note3 = value; }
  1124. }
  1125. /// <summary>
  1126. /// 试验条件1
  1127. /// </summary>
  1128. [Description("试验条件1")]
  1129. [Nullable(true)]
  1130. [DataLength(400)]
  1131. public string TestConditions1
  1132. {
  1133. get { return testConditions1; }
  1134. set { testConditions1 = value; }
  1135. }
  1136. /// <summary>
  1137. /// 试验条件2
  1138. /// </summary>
  1139. [Description("试验条件2")]
  1140. [Nullable(true)]
  1141. [DataLength(400)]
  1142. public string TestConditions2
  1143. {
  1144. get { return testConditions2; }
  1145. set { testConditions2 = value; }
  1146. }
  1147. /// <summary>
  1148. /// 试验条件3
  1149. /// </summary>
  1150. [Description("试验条件3")]
  1151. [Nullable(true)]
  1152. [DataLength(400)]
  1153. public string TestConditions3
  1154. {
  1155. get { return testConditions3; }
  1156. set { testConditions3 = value; }
  1157. }
  1158. /// <summary>
  1159. /// 试样取向
  1160. /// </summary>
  1161. [Description("试样取向")]
  1162. [Nullable(true)]
  1163. [DataLength(400)]
  1164. public string SpecimenOrientation
  1165. {
  1166. get { return specimenOrientation; }
  1167. set { specimenOrientation = value; }
  1168. }
  1169. /// <summary>
  1170. /// 试样类型
  1171. /// </summary>
  1172. [Description("试样类型")]
  1173. [Nullable(true)]
  1174. [DataLength(400)]
  1175. public string SpecimenType
  1176. {
  1177. get { return specimenType; }
  1178. set { specimenType = value; }
  1179. }
  1180. /// <summary>
  1181. /// 试样宽度
  1182. /// </summary>
  1183. [Description("试样宽度")]
  1184. [Nullable(true)]
  1185. [DataLength(400)]
  1186. public string SpecimenWidth
  1187. {
  1188. get { return specimenWidth; }
  1189. set { specimenWidth = value; }
  1190. }
  1191. /// <summary>
  1192. /// 试样厚度
  1193. /// </summary>
  1194. [Description("试样厚度")]
  1195. [Nullable(true)]
  1196. [DataLength(400)]
  1197. public string SpecimenDepth
  1198. {
  1199. get { return specimenDepth; }
  1200. set { specimenDepth = value; }
  1201. }
  1202. /// <summary>
  1203. /// 缺口形状
  1204. /// </summary>
  1205. [Description("缺口形状")]
  1206. [Nullable(true)]
  1207. [DataLength(400)]
  1208. public string ShapeOfNotch
  1209. {
  1210. get { return shapeOfNotch; }
  1211. set { shapeOfNotch = value; }
  1212. }
  1213. /// <summary>
  1214. /// 缺口深度
  1215. /// </summary>
  1216. [Description("缺口深度")]
  1217. [Nullable(true)]
  1218. [DataLength(400)]
  1219. public string NotchDepth
  1220. {
  1221. get { return notchDepth; }
  1222. set { notchDepth = value; }
  1223. }
  1224. /// <summary>
  1225. /// 硬度类别
  1226. /// </summary>
  1227. [Description("硬度类别")]
  1228. [Nullable(true)]
  1229. [DataLength(400)]
  1230. public string HardnessType
  1231. {
  1232. get { return hardnessType; }
  1233. set { hardnessType = value; }
  1234. }
  1235. /// <summary>
  1236. /// 结果评定
  1237. /// </summary>
  1238. [Description("结果评定")]
  1239. [Nullable(true)]
  1240. [DataLength(400)]
  1241. public string TestResults
  1242. {
  1243. get { return testResults; }
  1244. set { testResults = value; }
  1245. }
  1246. /// <summary>
  1247. /// 扣型
  1248. /// </summary>
  1249. [Description("扣型")]
  1250. [Nullable(true)]
  1251. [DataLength(400)]
  1252. public string Connection
  1253. {
  1254. get { return connection; }
  1255. set { connection = value; }
  1256. }
  1257. /// <summary>
  1258. /// 试验湿度
  1259. /// </summary>
  1260. [Description("试验湿度")]
  1261. [Nullable(true)]
  1262. [DataLength(400)]
  1263. public string CheckDampness
  1264. {
  1265. get { return checkDampness; }
  1266. set { checkDampness = value; }
  1267. }
  1268. /// <summary>
  1269. /// 试验项目
  1270. /// </summary>
  1271. [Description("试验项目")]
  1272. [Nullable(true)]
  1273. [DataLength(400)]
  1274. public string TestItem
  1275. {
  1276. get { return testItem; }
  1277. set { testItem = value; }
  1278. }
  1279. /// <summary>
  1280. /// 沉降率(ml/h)
  1281. /// </summary>
  1282. [Description("沉降率(ml/h)")]
  1283. [Nullable(true)]
  1284. [DataLength(100)]
  1285. public string CollectionRate
  1286. {
  1287. get { return collectionRate; }
  1288. set { collectionRate = value; }
  1289. }
  1290. /// <summary>
  1291. /// 喷雾类型
  1292. /// </summary>
  1293. [Description("喷雾类型")]
  1294. [Nullable(true)]
  1295. [DataLength(100)]
  1296. public string SprayType
  1297. {
  1298. get { return sprayType; }
  1299. set { sprayType = value; }
  1300. }
  1301. /// <summary>
  1302. /// 放置角度(°)
  1303. /// </summary>
  1304. [Description("放置角度(°)")]
  1305. [Nullable(true)]
  1306. [DataLength(100)]
  1307. public string Angle
  1308. {
  1309. get { return angle; }
  1310. set { angle = value; }
  1311. }
  1312. /// <summary>
  1313. /// 试板形状
  1314. /// </summary>
  1315. [Description("试板形状")]
  1316. [Nullable(true)]
  1317. [DataLength(100)]
  1318. public string SampleType
  1319. {
  1320. get { return sampleType; }
  1321. set { sampleType = value; }
  1322. }
  1323. /// <summary>
  1324. /// 溶液(收集)浓度
  1325. /// </summary>
  1326. [Description("溶液(收集)浓度 ")]
  1327. [Nullable(true)]
  1328. [DataLength(100)]
  1329. public string Concentration
  1330. {
  1331. get { return concentration; }
  1332. set { concentration = value; }
  1333. }
  1334. /// <summary>
  1335. /// 图片1
  1336. /// </summary>
  1337. [Description("图片1")]
  1338. [Nullable(true)]
  1339. [DataLength(100)]
  1340. public string FilePath1
  1341. {
  1342. get { return filePath1; }
  1343. set { filePath1 = value; }
  1344. }
  1345. /// <summary>
  1346. /// 图片2
  1347. /// </summary>
  1348. [Description("图片2")]
  1349. [Nullable(true)]
  1350. [DataLength(100)]
  1351. public string FilePath2
  1352. {
  1353. get { return filePath2; }
  1354. set { filePath2 = value; }
  1355. }
  1356. /// <summary>
  1357. /// 图片3
  1358. /// </summary>
  1359. [Description("图片3")]
  1360. [Nullable(true)]
  1361. [DataLength(100)]
  1362. public string FilePath3
  1363. {
  1364. get { return filePath3; }
  1365. set { filePath3 = value; }
  1366. }
  1367. /// <summary>
  1368. /// 图片4
  1369. /// </summary>
  1370. [Description("图片4")]
  1371. [Nullable(true)]
  1372. [DataLength(100)]
  1373. public string FilePath4
  1374. {
  1375. get { return filePath4; }
  1376. set { filePath4 = value; }
  1377. }
  1378. /// <summary>
  1379. /// 图片5
  1380. /// </summary>
  1381. [Description("图片5")]
  1382. [Nullable(true)]
  1383. [DataLength(100)]
  1384. public string FilePath5
  1385. {
  1386. get { return filePath5; }
  1387. set { filePath5 = value; }
  1388. }
  1389. /// <summary>
  1390. /// 图片6
  1391. /// </summary>
  1392. [Description("图片6")]
  1393. [Nullable(true)]
  1394. [DataLength(100)]
  1395. public string FilePath6
  1396. {
  1397. get { return filePath6; }
  1398. set { filePath6 = value; }
  1399. }
  1400. /// <summary>
  1401. /// 图片7
  1402. /// </summary>
  1403. [Description("图片7")]
  1404. [Nullable(true)]
  1405. [DataLength(100)]
  1406. public string FilePath7
  1407. {
  1408. get { return filePath7; }
  1409. set { filePath7 = value; }
  1410. }
  1411. /// <summary>
  1412. /// 试验日期
  1413. /// </summary>
  1414. [Description("试验日期")]
  1415. [Nullable(true)]
  1416. public string TestDate
  1417. {
  1418. get { return testDate; }
  1419. set { testDate = value; }
  1420. }
  1421. /// <summary>
  1422. /// 报出日期
  1423. /// </summary>
  1424. [Description("报出日期")]
  1425. [Nullable(true)]
  1426. public string ReportedDate
  1427. {
  1428. get { return reportedDate; }
  1429. set { reportedDate = value; }
  1430. }
  1431. /// <summary>
  1432. /// 报出人
  1433. /// </summary>
  1434. [Description("报出人")]
  1435. [Nullable(true)]
  1436. [DataLength(20)]
  1437. public string ReportedName
  1438. {
  1439. get { return reportedName; }
  1440. set { reportedName = value; }
  1441. }
  1442. /// <summary>
  1443. /// 复核人
  1444. /// </summary>
  1445. [Description("复核人")]
  1446. [Nullable(true)]
  1447. [DataLength(20)]
  1448. public string ApprovedName
  1449. {
  1450. get { return approvedName; }
  1451. set { approvedName = value; }
  1452. }
  1453. }
  1454. }