5451abe31f81f247391ff4cc3bfb4a570650d133.svn-base 25 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223
  1. package QCM.COMMUNAL.VO;
  2. import java.io.Serializable;
  3. import java.util.Date;
  4. import java.util.HashMap;
  5. public class QcmJhySampleConsignDItem implements Serializable{
  6. /**
  7. * ȡ�����
  8. */
  9. private String specimen_no;
  10. public String getSpecimen_no() {
  11. return this.specimen_no;
  12. }
  13. public void setSpecimen_no(String specimen_no) {
  14. this.specimen_no = specimen_no;
  15. }
  16. /**
  17. * ������Ŀ��ˮ��
  18. */
  19. private Long seq;
  20. public Long getSeq() {
  21. return this.seq;
  22. }
  23. public void setSeq(Long seq) {
  24. this.seq = seq;
  25. }
  26. /**
  27. * ���ʼ�������루���ࣩ
  28. */
  29. private String phy_code_l;
  30. public String getPhy_code_l() {
  31. return this.phy_code_l;
  32. }
  33. public void setPhy_code_l(String phy_code_l) {
  34. this.phy_code_l = phy_code_l;
  35. }
  36. /**
  37. * ���ʼ��������ƣ����ࣩ
  38. */
  39. private String phy_name_l;
  40. public String getPhy_name_l() {
  41. return this.phy_name_l;
  42. }
  43. public void setPhy_name_l(String phy_name_l) {
  44. this.phy_name_l = phy_name_l;
  45. }
  46. /**
  47. * ���������
  48. */
  49. private String phy_code_m;
  50. public String getPhy_code_m() {
  51. return this.phy_code_m;
  52. }
  53. public void setPhy_code_m(String phy_code_m) {
  54. this.phy_code_m = phy_code_m;
  55. }
  56. /**
  57. * ����������
  58. */
  59. private String phy_name_m;
  60. public String getPhy_name_m() {
  61. return this.phy_name_m;
  62. }
  63. public void setPhy_name_m(String phy_name_m) {
  64. this.phy_name_m = phy_name_m;
  65. }
  66. /**
  67. * ���ʼ��������
  68. */
  69. private String phy_code_s;
  70. public String getPhy_code_s() {
  71. return this.phy_code_s;
  72. }
  73. public void setPhy_code_s(String phy_code_s) {
  74. this.phy_code_s = phy_code_s;
  75. }
  76. /**
  77. * ���ʼ���������
  78. */
  79. private String phy_name_s;
  80. public String getPhy_name_s() {
  81. return this.phy_name_s;
  82. }
  83. public void setPhy_name_s(String phy_name_s) {
  84. this.phy_name_s = phy_name_s;
  85. }
  86. /**
  87. * ���鷽�����
  88. */
  89. private String item_code_d;
  90. public String getItem_code_d() {
  91. return this.item_code_d;
  92. }
  93. public void setItem_code_d(String item_code_d) {
  94. this.item_code_d = item_code_d;
  95. }
  96. /**
  97. * ���鷽������
  98. */
  99. private String item_name_d;
  100. public String getItem_name_d() {
  101. return this.item_name_d;
  102. }
  103. public void setItem_name_d(String item_name_d) {
  104. this.item_name_d = item_name_d;
  105. }
  106. /**
  107. * �����¶ȴ���
  108. */
  109. private String item_code_t;
  110. public String getItem_code_t() {
  111. return this.item_code_t;
  112. }
  113. public void setItem_code_t(String item_code_t) {
  114. this.item_code_t = item_code_t;
  115. }
  116. /**
  117. * �����¶�����
  118. */
  119. private String item_name_t;
  120. public String getItem_name_t() {
  121. return this.item_name_t;
  122. }
  123. public void setItem_name_t(String item_name_t) {
  124. this.item_name_t = item_name_t;
  125. }
  126. /**
  127. * �����ߴ����
  128. */
  129. private String item_code_s;
  130. public String getItem_code_s() {
  131. return this.item_code_s;
  132. }
  133. public void setItem_code_s(String item_code_s) {
  134. this.item_code_s = item_code_s;
  135. }
  136. /**
  137. * �����ߴ�����
  138. */
  139. private String item_name_s;
  140. public String getItem_name_s() {
  141. return this.item_name_s;
  142. }
  143. public void setItem_name_s(String item_name_s) {
  144. this.item_name_s = item_name_s;
  145. }
  146. /**
  147. * �Ƿ��ж�()1:�ǣ�0����)
  148. */
  149. private String isjudge;
  150. public String getIsjudge() {
  151. return this.isjudge;
  152. }
  153. public void setIsjudge(String isjudge) {
  154. this.isjudge = isjudge;
  155. }
  156. /**
  157. * �ж�����(A:��Сֵ,B:���ֵ,C:ƽ��ֵ,D:����ֵ��)
  158. */
  159. private String judge_basis;
  160. public String getJudge_basis() {
  161. return this.judge_basis;
  162. }
  163. public void setJudge_basis(String judge_basis) {
  164. this.judge_basis = judge_basis;
  165. }
  166. /**
  167. * ֵ��λ���Ӽ������������ȡ��
  168. */
  169. private String unti;
  170. public String getUnti() {
  171. return this.unti;
  172. }
  173. public void setUnti(String unti) {
  174. this.unti = unti;
  175. }
  176. /**
  177. * ����������(ͬһ�����Ϊ��ѡһ��)
  178. */
  179. private String group_seq;
  180. public String getGroup_seq() {
  181. return this.group_seq;
  182. }
  183. public void setGroup_seq(String group_seq) {
  184. this.group_seq = group_seq;
  185. }
  186. /**
  187. * ����ȡ�����
  188. */
  189. private String quote_specimen_no;
  190. public String getQuote_specimen_no() {
  191. return this.quote_specimen_no;
  192. }
  193. public void setQuote_specimen_no(String quote_specimen_no) {
  194. this.quote_specimen_no = quote_specimen_no;
  195. }
  196. /**
  197. * ���ʼ�������루���ࣩ
  198. */
  199. private String quote_phy_code_l;
  200. public String getQuote_phy_code_l() {
  201. return this.quote_phy_code_l;
  202. }
  203. public void setQuote_phy_code_l(String quote_phy_code_l) {
  204. this.quote_phy_code_l = quote_phy_code_l;
  205. }
  206. /**
  207. * ���������
  208. */
  209. private String quote_phy_code_m;
  210. public String getQuote_phy_code_m() {
  211. return this.quote_phy_code_m;
  212. }
  213. public void setQuote_phy_code_m(String quote_phy_code_m) {
  214. this.quote_phy_code_m = quote_phy_code_m;
  215. }
  216. /**
  217. * ���ʼ��������
  218. */
  219. private String quote_phy_code_s;
  220. public String getQuote_phy_code_s() {
  221. return this.quote_phy_code_s;
  222. }
  223. public void setQuote_phy_code_s(String quote_phy_code_s) {
  224. this.quote_phy_code_s = quote_phy_code_s;
  225. }
  226. /**
  227. * ���鷽�����
  228. */
  229. private String quote_item_code_d;
  230. public String getQuote_item_code_d() {
  231. return this.quote_item_code_d;
  232. }
  233. public void setQuote_item_code_d(String quote_item_code_d) {
  234. this.quote_item_code_d = quote_item_code_d;
  235. }
  236. /**
  237. * �����¶ȴ���
  238. */
  239. private String quote_item_code_t;
  240. public String getQuote_item_code_t() {
  241. return this.quote_item_code_t;
  242. }
  243. public void setQuote_item_code_t(String quote_item_code_t) {
  244. this.quote_item_code_t = quote_item_code_t;
  245. }
  246. /**
  247. * �����ߴ����
  248. */
  249. private String quote_item_code_s;
  250. public String getQuote_item_code_s() {
  251. return this.quote_item_code_s;
  252. }
  253. public void setQuote_item_code_s(String quote_item_code_s) {
  254. this.quote_item_code_s = quote_item_code_s;
  255. }
  256. /**
  257. * ������Ŀƴ�Ӵ���(���ʼ�����Ŀ����_���������_������Ŀ����_�������_�¶ȴ���_�ߴ����)
  258. */
  259. private String phy_item_code;
  260. public String getPhy_item_code() {
  261. return this.phy_item_code;
  262. }
  263. public void setPhy_item_code(String phy_item_code) {
  264. this.phy_item_code = phy_item_code;
  265. }
  266. /**
  267. * ������Ŀƴ������(���ʼ�����Ŀ����_����������_������Ŀ����_��������_�¶�����_�ߴ�����)
  268. */
  269. private String phy_item_desc;
  270. public String getPhy_item_desc() {
  271. return this.phy_item_desc;
  272. }
  273. public void setPhy_item_desc(String phy_item_desc) {
  274. this.phy_item_desc = phy_item_desc;
  275. }
  276. /**
  277. * �Ƿ��ͣ�1���ǣ�0����
  278. */
  279. private String is_send;
  280. public String getIs_send() {
  281. return this.is_send;
  282. }
  283. public void setIs_send(String is_send) {
  284. this.is_send = is_send;
  285. }
  286. /**
  287. * ������
  288. */
  289. private String create_name;
  290. public String getCreate_name() {
  291. return this.create_name;
  292. }
  293. public void setCreate_name(String create_name) {
  294. this.create_name = create_name;
  295. }
  296. /**
  297. * ����ʱ��
  298. */
  299. private Date create_time;
  300. public Date getCreate_time() {
  301. return this.create_time;
  302. }
  303. public void setCreate_time(Date create_time) {
  304. this.create_time = create_time;
  305. }
  306. /**
  307. * �޸���
  308. */
  309. private String update_name;
  310. public String getUpdate_name() {
  311. return this.update_name;
  312. }
  313. public void setUpdate_name(String update_name) {
  314. this.update_name = update_name;
  315. }
  316. /**
  317. * �޸�ʱ��
  318. */
  319. private Date update_time;
  320. public Date getUpdate_time() {
  321. return this.update_time;
  322. }
  323. public void setUpdate_time(Date update_time) {
  324. this.update_time = update_time;
  325. }
  326. /**
  327. * ɾ����
  328. */
  329. private String delete_name;
  330. public String getDelete_name() {
  331. return this.delete_name;
  332. }
  333. public void setDelete_name(String delete_name) {
  334. this.delete_name = delete_name;
  335. }
  336. /**
  337. * ɾ��ʱ��
  338. */
  339. private Date delete_time;
  340. public Date getDelete_time() {
  341. return this.delete_time;
  342. }
  343. public void setDelete_time(Date delete_time) {
  344. this.delete_time = delete_time;
  345. }
  346. /**
  347. * ��ע
  348. */
  349. private String memo;
  350. public String getMemo() {
  351. return this.memo;
  352. }
  353. public void setMemo(String memo) {
  354. this.memo = memo;
  355. }
  356. /**
  357. * ��Ч��־(1:��Ч��0:��Ч)
  358. */
  359. private String validflag;
  360. public String getValidflag() {
  361. return this.validflag;
  362. }
  363. public void setValidflag(String validflag) {
  364. this.validflag = validflag;
  365. }
  366. //----------------------------------------------------------------------------------
  367. /**
  368. * �ڿر�׼�Ƿ��������
  369. * */
  370. private String is_stdpic;
  371. public String getIs_stdpic() {
  372. return is_stdpic;
  373. }
  374. public void setIs_stdpic(String is_stdpic) {
  375. this.is_stdpic = is_stdpic;
  376. }
  377. /**
  378. * ����ֵ�Ƿ����
  379. * */
  380. private String is_std;
  381. public String getIs_std() {
  382. return is_std;
  383. }
  384. public void setIs_std(String is_std) {
  385. this.is_std = is_std;
  386. }
  387. /**
  388. * ����ֵ���ޣ�����
  389. * */
  390. private Long stdmin_update;
  391. private Long stdmax_update;
  392. public Long getStdmin_update() {
  393. return stdmin_update;
  394. }
  395. public void setStdmin_update(Long long1) {
  396. this.stdmin_update = long1;
  397. }
  398. public Long getStdmax_update() {
  399. return stdmax_update;
  400. }
  401. public void setStdmax_update(Long stdmax_update) {
  402. this.stdmax_update = stdmax_update;
  403. }
  404. /**
  405. * ȡ�����ͱ���
  406. * */
  407. private String smp_type_code;
  408. public String getSmp_type_code() {
  409. return smp_type_code;
  410. }
  411. public void setSmp_type_code(String smp_type_code) {
  412. this.smp_type_code = smp_type_code;
  413. }
  414. /**
  415. * ȡ����������
  416. * */
  417. private String smp_type_name;
  418. public String getSmp_type_name() {
  419. return smp_type_name;
  420. }
  421. public void setSmp_type_name(String smp_type_name) {
  422. this.smp_type_name = smp_type_name;
  423. }
  424. /**
  425. * ��׼��Χ���޷���(������
  426. */
  427. private String jf_stdmin_sign;
  428. public String getJf_stdmin_sign() {
  429. return this.jf_stdmin_sign;
  430. }
  431. public void setJf_stdmin_sign(String jf_stdmin_sign) {
  432. this.jf_stdmin_sign = jf_stdmin_sign;
  433. }
  434. /**
  435. * ��׼��Χ����(������
  436. */
  437. private String jf_stdmin;
  438. public String getJf_stdmin() {
  439. return this.jf_stdmin;
  440. }
  441. public void setJf_stdmin(String jf_stdmin) {
  442. this.jf_stdmin = jf_stdmin;
  443. }
  444. /**
  445. * ��׼��Χ���޷���(������
  446. */
  447. private String jf_stdmax_sign;
  448. public String getJf_stdmax_sign() {
  449. return this.jf_stdmax_sign;
  450. }
  451. public void setJf_stdmax_sign(String jf_stdmax_sign) {
  452. this.jf_stdmax_sign = jf_stdmax_sign;
  453. }
  454. /**
  455. * ��׼��Χ����(������
  456. */
  457. private String jf_stdmax;
  458. public String getJf_stdmax() {
  459. return this.jf_stdmax;
  460. }
  461. public void setJf_stdmax(String jf_stdmax) {
  462. this.jf_stdmax = jf_stdmax;
  463. }
  464. /**
  465. * ��׼��Χ���޷��ţ��ڿأ�
  466. */
  467. private String nk_stdmin_sign;
  468. public String getNk_stdmin_sign() {
  469. return this.nk_stdmin_sign;
  470. }
  471. public void setNk_stdmin_sign(String nk_stdmin_sign) {
  472. this.nk_stdmin_sign = nk_stdmin_sign;
  473. }
  474. /**
  475. * ��׼��Χ���ޣ��ڿأ�
  476. */
  477. private String nk_stdmin;
  478. public String getNk_stdmin() {
  479. return this.nk_stdmin;
  480. }
  481. public void setNk_stdmin(String nk_stdmin) {
  482. this.nk_stdmin = nk_stdmin;
  483. }
  484. /**
  485. * ��׼��Χ���޷��ţ��ڿأ�
  486. */
  487. private String nk_stdmax_sign;
  488. public String getNk_stdmax_sign() {
  489. return this.nk_stdmax_sign;
  490. }
  491. public void setNk_stdmax_sign(String nk_stdmax_sign) {
  492. this.nk_stdmax_sign = nk_stdmax_sign;
  493. }
  494. /**
  495. * ��׼��Χ���ޣ��ڿأ�
  496. */
  497. private String nk_stdmax;
  498. public String getNk_stdmax() {
  499. return this.nk_stdmax;
  500. }
  501. public void setNk_stdmax(String nk_stdmax) {
  502. this.nk_stdmax = nk_stdmax;
  503. }
  504. /**
  505. * ��Լ����
  506. */
  507. private String rounding;
  508. public String getRounding() {
  509. return this.rounding;
  510. }
  511. public void setRounding(String rounding) {
  512. this.rounding = rounding;
  513. }
  514. /**
  515. * ��Լλ��(������λС��)
  516. */
  517. private Long rounding_digits;
  518. public Long getRounding_digits() {
  519. return this.rounding_digits;
  520. }
  521. public void setRounding_digits(Long rounding_digits) {
  522. this.rounding_digits = rounding_digits;
  523. }
  524. /**
  525. * ��׼��Χ���޷���(�ͻ���
  526. */
  527. private String kh_stdmin_sign;
  528. public String getKh_stdmin_sign() {
  529. return this.kh_stdmin_sign;
  530. }
  531. public void setKh_stdmin_sign(String kh_stdmin_sign) {
  532. this.kh_stdmin_sign = kh_stdmin_sign;
  533. }
  534. /**
  535. * ��׼��Χ����(�ͻ���
  536. */
  537. private String kh_stdmin;
  538. public String getKh_stdmin() {
  539. return this.kh_stdmin;
  540. }
  541. public void setKh_stdmin(String kh_stdmin) {
  542. this.kh_stdmin = kh_stdmin;
  543. }
  544. /**
  545. * ��׼��Χ���޷���(�ͻ���
  546. */
  547. private String kh_stdmax_sign;
  548. public String getKh_stdmax_sign() {
  549. return this.kh_stdmax_sign;
  550. }
  551. public void setKh_stdmax_sign(String kh_stdmax_sign) {
  552. this.kh_stdmax_sign = kh_stdmax_sign;
  553. }
  554. /**
  555. * ��׼��Χ����(�ͻ���
  556. */
  557. private String kh_stdmax;
  558. public String getKh_stdmax() {
  559. return this.kh_stdmax;
  560. }
  561. public void setKh_stdmax(String kh_stdmax) {
  562. this.kh_stdmax = kh_stdmax;
  563. }
  564. /**
  565. * ��׼��Χ���޷���(�ͻ���
  566. */
  567. private String fx_stdmin_sign;
  568. /**
  569. * ��׼��Χ����(�ͻ���
  570. */
  571. private String fx_stdmin;
  572. /**
  573. * ��׼��Χ���޷���(�ͻ���
  574. */
  575. private String fx_stdmax_sign;
  576. /**
  577. * ��׼��Χ����(�ͻ���
  578. */
  579. private String fx_stdmax;
  580. public String getFx_stdmin_sign() {
  581. return fx_stdmin_sign;
  582. }
  583. public void setFx_stdmin_sign(String fx_stdmin_sign) {
  584. this.fx_stdmin_sign = fx_stdmin_sign;
  585. }
  586. public String getFx_stdmin() {
  587. return fx_stdmin;
  588. }
  589. public void setFx_stdmin(String fx_stdmin) {
  590. this.fx_stdmin = fx_stdmin;
  591. }
  592. public String getFx_stdmax_sign() {
  593. return fx_stdmax_sign;
  594. }
  595. public void setFx_stdmax_sign(String fx_stdmax_sign) {
  596. this.fx_stdmax_sign = fx_stdmax_sign;
  597. }
  598. public String getFx_stdmax() {
  599. return fx_stdmax;
  600. }
  601. public void setFx_stdmax(String fx_stdmax) {
  602. this.fx_stdmax = fx_stdmax;
  603. }
  604. /**
  605. * ���б�ʶ
  606. * */
  607. private String is_must;
  608. public String getIs_must() {
  609. return is_must;
  610. }
  611. public void setIs_must(String is_must) {
  612. this.is_must = is_must;
  613. }
  614. /**
  615. * ֵ1
  616. */
  617. private String val1;
  618. public String getVal1() {
  619. return this.val1;
  620. }
  621. public void setVal1(String val1) {
  622. this.val1 = val1;
  623. }
  624. /**
  625. * ֵ2
  626. */
  627. private String val2;
  628. public String getVal2() {
  629. return this.val2;
  630. }
  631. public void setVal2(String val2) {
  632. this.val2 = val2;
  633. }
  634. /**
  635. * ֵ3
  636. */
  637. private String val3;
  638. public String getVal3() {
  639. return this.val3;
  640. }
  641. public void setVal3(String val3) {
  642. this.val3 = val3;
  643. }
  644. /**
  645. * ֵ4
  646. */
  647. private String val4;
  648. public String getVal4() {
  649. return this.val4;
  650. }
  651. public void setVal4(String val4) {
  652. this.val4 = val4;
  653. }
  654. /**
  655. * ֵ5
  656. */
  657. private String val5;
  658. public String getVal5() {
  659. return this.val5;
  660. }
  661. public void setVal5(String val5) {
  662. this.val5 = val5;
  663. }
  664. /**
  665. * ֵ6
  666. */
  667. private String val6;
  668. public String getVal6() {
  669. return this.val6;
  670. }
  671. public void setVal6(String val6) {
  672. this.val6 = val6;
  673. }
  674. /**
  675. * ֵ7
  676. */
  677. private String val7;
  678. public String getVal7() {
  679. return this.val7;
  680. }
  681. public void setVal7(String val7) {
  682. this.val7 = val7;
  683. }
  684. /**
  685. * ֵ8
  686. */
  687. private String val8;
  688. public String getVal8() {
  689. return this.val8;
  690. }
  691. public void setVal8(String val8) {
  692. this.val8 = val8;
  693. }
  694. /**
  695. * ֵ9
  696. */
  697. private String val9;
  698. public String getVal9() {
  699. return this.val9;
  700. }
  701. public void setVal9(String val9) {
  702. this.val9 = val9;
  703. }
  704. /**
  705. * ֵ10
  706. */
  707. private String val10;
  708. public String getVal10() {
  709. return this.val10;
  710. }
  711. public void setVal10(String val10) {
  712. this.val10 = val10;
  713. }
  714. /**
  715. * ֵ11
  716. */
  717. private String val11;
  718. public String getVal11() {
  719. return this.val11;
  720. }
  721. public void setVal11(String val11) {
  722. this.val11 = val11;
  723. }
  724. /**
  725. * ֵ12
  726. */
  727. private String val12;
  728. public String getVal12() {
  729. return this.val12;
  730. }
  731. public void setVal12(String val12) {
  732. this.val12 = val12;
  733. }
  734. /**
  735. * ֵ13
  736. */
  737. private String val13;
  738. public String getVal13() {
  739. return this.val13;
  740. }
  741. public void setVal13(String val13) {
  742. this.val13 = val13;
  743. }
  744. /**
  745. * ֵ14
  746. */
  747. private String val14;
  748. public String getVal14() {
  749. return this.val14;
  750. }
  751. public void setVal14(String val14) {
  752. this.val14 = val14;
  753. }
  754. /**
  755. * ֵ15
  756. */
  757. private String val15;
  758. public String getVal15() {
  759. return this.val15;
  760. }
  761. public void setVal15(String val15) {
  762. this.val15 = val15;
  763. }
  764. // �������ͻ����ڿ��жϽ����ʶ
  765. private String istrue_jfmin;
  766. private String istrue_jfmax;
  767. private String istrue_khmin;
  768. private String istrue_khmax;
  769. private String istrue_nkmin;
  770. private String istrue_nkmax;
  771. public String isIstrue_jfmin() {
  772. return istrue_jfmin;
  773. }
  774. public void setIstrue_jfmin(String istrue_jfmin) {
  775. this.istrue_jfmin = istrue_jfmin;
  776. }
  777. public String isIstrue_jfmax() {
  778. return istrue_jfmax;
  779. }
  780. public void setIstrue_jfmax(String istrue_jfmax) {
  781. this.istrue_jfmax = istrue_jfmax;
  782. }
  783. public String isIstrue_khmin() {
  784. return istrue_khmin;
  785. }
  786. public void setIstrue_khmin(String istrue_khmin) {
  787. this.istrue_khmin = istrue_khmin;
  788. }
  789. public String isIstrue_khmax() {
  790. return istrue_khmax;
  791. }
  792. public void setIstrue_khmax(String istrue_khmax) {
  793. this.istrue_khmax = istrue_khmax;
  794. }
  795. public String isIstrue_nkmin() {
  796. return istrue_nkmin;
  797. }
  798. public void setIstrue_nkmin(String istrue_nkmin) {
  799. this.istrue_nkmin = istrue_nkmin;
  800. }
  801. public String isIstrue_nkmax() {
  802. return istrue_nkmax;
  803. }
  804. public void setIstrue_nkmax(String istrue_nkmax) {
  805. this.istrue_nkmax = istrue_nkmax;
  806. }
  807. /**
  808. * ���ڴ���
  809. */
  810. private HashMap<String, HashMap<String, String>> stand;
  811. public HashMap<String, HashMap<String, String>> getStand() {
  812. return stand;
  813. }
  814. public void setStand(HashMap<String, HashMap<String, String>> stand) {
  815. this.stand = stand;
  816. }
  817. private String jf_min_result;
  818. private String jf_max_result;
  819. private String kh_min_result;
  820. private String kh_max_result;
  821. private String nk_min_result;
  822. private String nk_max_result;
  823. private String fx_min_result;
  824. private String fx_max_result;
  825. public String getFx_min_result() {
  826. return fx_min_result;
  827. }
  828. public void setFx_min_result(String fx_min_result) {
  829. this.fx_min_result = fx_min_result;
  830. }
  831. public String getFx_max_result() {
  832. return fx_max_result;
  833. }
  834. public void setFx_max_result(String fx_max_result) {
  835. this.fx_max_result = fx_max_result;
  836. }
  837. public String getJf_min_result() {
  838. return jf_min_result;
  839. }
  840. public void setJf_min_result(String jf_min_result) {
  841. this.jf_min_result = jf_min_result;
  842. }
  843. public String getJf_max_result() {
  844. return jf_max_result;
  845. }
  846. public void setJf_max_result(String jf_max_result) {
  847. this.jf_max_result = jf_max_result;
  848. }
  849. public String getKh_min_result() {
  850. return kh_min_result;
  851. }
  852. public void setKh_min_result(String kh_min_result) {
  853. this.kh_min_result = kh_min_result;
  854. }
  855. public String getKh_max_result() {
  856. return kh_max_result;
  857. }
  858. public void setKh_max_result(String kh_max_result) {
  859. this.kh_max_result = kh_max_result;
  860. }
  861. public String getNk_min_result() {
  862. return nk_min_result;
  863. }
  864. public void setNk_min_result(String nk_min_result) {
  865. this.nk_min_result = nk_min_result;
  866. }
  867. public String getNk_max_result() {
  868. return nk_max_result;
  869. }
  870. public void setNk_max_result(String nk_max_result) {
  871. this.nk_max_result = nk_max_result;
  872. }
  873. /**
  874. * ����ȡ�����
  875. */
  876. private String quote_consign_no;
  877. public String getQuote_consign_no() {
  878. return quote_consign_no;
  879. }
  880. public void setQuote_consign_no(String quote_consign_no) {
  881. this.quote_consign_no = quote_consign_no;
  882. }
  883. /**
  884. * ����ȡ�����
  885. */
  886. private String old_consign_no;
  887. public String getOld_consign_no() {
  888. return old_consign_no;
  889. }
  890. public void setOld_consign_no(String old_consign_no) {
  891. this.old_consign_no = old_consign_no;
  892. }
  893. private String is_quote;
  894. public String getIs_quote() {
  895. return is_quote;
  896. }
  897. public void setIs_quote(String is_quote) {
  898. this.is_quote = is_quote;
  899. }
  900. //----------------------- 2019.1.25 �¼��ֶ�����Ӧ�ü�����Ŀ----------------------------------------------------------------------------
  901. /**
  902. * ƽ��ֵ
  903. */
  904. private String avg_val;
  905. public String getAvg_val() {
  906. return avg_val;
  907. }
  908. public void setAvg_val(String avg_val) {
  909. this.avg_val = avg_val;
  910. }
  911. /**
  912. * ���ü�����Ŀ
  913. */
  914. private String quote_phy_item;
  915. public String getQuote_phy_item() {
  916. return quote_phy_item;
  917. }
  918. public void setQuote_phy_item(String quote_phy_item) {
  919. this.quote_phy_item = quote_phy_item;
  920. }
  921. private String phy_id;
  922. public String getPhy_id() {
  923. return phy_id;
  924. }
  925. public void setPhy_id(String phy_id) {
  926. this.phy_id = phy_id;
  927. }
  928. private String addcondition;
  929. private String addstdcon_code;
  930. private String addstd_min_sign;
  931. private String addstd_min;
  932. private String addstd_max;
  933. private String add_std_max_sign;
  934. private Integer addpercent;
  935. public String getAddcondition() {
  936. return addcondition;
  937. }
  938. public void setAddcondition(String addcondition) {
  939. this.addcondition = addcondition;
  940. }
  941. public String getAddstdcon_code() {
  942. return addstdcon_code;
  943. }
  944. public void setAddstdcon_code(String addstdcon_code) {
  945. this.addstdcon_code = addstdcon_code;
  946. }
  947. public String getAddstd_min_sign() {
  948. return addstd_min_sign;
  949. }
  950. public void setAddstd_min_sign(String addstd_min_sign) {
  951. this.addstd_min_sign = addstd_min_sign;
  952. }
  953. public String getAddstd_min() {
  954. return addstd_min;
  955. }
  956. public void setAddstd_min(String addstd_min) {
  957. this.addstd_min = addstd_min;
  958. }
  959. public String getAddstd_max() {
  960. return addstd_max;
  961. }
  962. public void setAddstd_max(String addstd_max) {
  963. this.addstd_max = addstd_max;
  964. }
  965. public String getAdd_std_max_sign() {
  966. return add_std_max_sign;
  967. }
  968. public void setAdd_std_max_sign(String add_std_max_sign) {
  969. this.add_std_max_sign = add_std_max_sign;
  970. }
  971. /*public String getIstrue_jfmin() {
  972. return istrue_jfmin;
  973. }
  974. public String getIstrue_jfmax() {
  975. return istrue_jfmax;
  976. }
  977. public String getIstrue_khmin() {
  978. return istrue_khmin;
  979. }
  980. public String getIstrue_khmax() {
  981. return istrue_khmax;
  982. }
  983. public String getIstrue_nkmin() {
  984. return istrue_nkmin;
  985. }
  986. public String getIstrue_nkmax() {
  987. return istrue_nkmax;
  988. }*/
  989. public Integer getAddpercent() {
  990. return addpercent;
  991. }
  992. public void setAddpercent(Integer addpercent) {
  993. this.addpercent = addpercent;
  994. }
  995. private String isbz;
  996. public String getIsbz() {
  997. return isbz;
  998. }
  999. public void setIsbz(String isbz) {
  1000. this.isbz = isbz;
  1001. }
  1002. private String stdmax;
  1003. private String stdmin;
  1004. private String stdmin_sign;
  1005. private String stdmax_sign;
  1006. public String getStdmax() {
  1007. return stdmax;
  1008. }
  1009. public void setStdmax(String stdmax) {
  1010. this.stdmax = stdmax;
  1011. }
  1012. public String getStdmin() {
  1013. return stdmin;
  1014. }
  1015. public void setStdmin(String stdmin) {
  1016. this.stdmin = stdmin;
  1017. }
  1018. public String getStdmin_sign() {
  1019. return stdmin_sign;
  1020. }
  1021. public void setStdmin_sign(String stdmin_sign) {
  1022. this.stdmin_sign = stdmin_sign;
  1023. }
  1024. public String getStdmax_sign() {
  1025. return stdmax_sign;
  1026. }
  1027. public void setStdmax_sign(String stdmax_sign) {
  1028. this.stdmax_sign = stdmax_sign;
  1029. }
  1030. private String item_code_l;
  1031. private String item_desc_l;
  1032. public String getItem_code_l() {
  1033. return item_code_l;
  1034. }
  1035. public void setItem_code_l(String item_code_l) {
  1036. this.item_code_l = item_code_l;
  1037. }
  1038. public String getItem_desc_l() {
  1039. return item_desc_l;
  1040. }
  1041. public void setItem_desc_l(String item_desc_l) {
  1042. this.item_desc_l = item_desc_l;
  1043. }
  1044. private String defect_flag;
  1045. public String getDefect_flag() {
  1046. return defect_flag;
  1047. }
  1048. public void setDefect_flag(String defect_flag) {
  1049. this.defect_flag = defect_flag;
  1050. }
  1051. /* private String phy_group_code;
  1052. public String getPhy_group_code() {
  1053. return phy_group_code;
  1054. }
  1055. public void setPhy_group_code(String phy_group_code) {
  1056. this.phy_group_code = phy_group_code;
  1057. }*/
  1058. /**
  1059. * 取样材料号
  1060. */
  1061. private String material_no;
  1062. public String getMaterial_no() {
  1063. return material_no;
  1064. }
  1065. public void setMaterial_no(String material_no) {
  1066. this.material_no = material_no;
  1067. }
  1068. /**
  1069. * 热处理号
  1070. */
  1071. private String ht_no;
  1072. public String getHt_no() {
  1073. return ht_no;
  1074. }
  1075. public void setHt_no(String ht_no) {
  1076. this.ht_no = ht_no;
  1077. }
  1078. private String fy_quote_specimen_no;
  1079. public String getFy_quote_specimen_no() {
  1080. return fy_quote_specimen_no;
  1081. }
  1082. public void setFy_quote_specimen_no(String fy_quote_specimen_no) {
  1083. this.fy_quote_specimen_no = fy_quote_specimen_no;
  1084. }
  1085. private String steelname = "";
  1086. public String getSteelname() {
  1087. return steelname;
  1088. }
  1089. public void setSteelname(String steelname) {
  1090. this.steelname = steelname;
  1091. }
  1092. private String thick;
  1093. public String getThick() {
  1094. return thick;
  1095. }
  1096. public void setThick(String thick) {
  1097. this.thick = thick;
  1098. }
  1099. private String smp_location;
  1100. public String getSmp_location() {
  1101. return smp_location;
  1102. }
  1103. public void setSmp_location(String smp_location) {
  1104. this.smp_location = smp_location;
  1105. }
  1106. }