Commit 1531fc423fa9617950b189b5d6e5f9755b2e910b
1 parent
0d713378b4
Exists in
master
and in
6 other branches
秦皇岛初诊 复诊添加字段
Showing 4 changed files with 321 additions and 8 deletions
- platform-dal/src/main/java/com/lyms/platform/pojo/AntExChuModel.java
- platform-dal/src/main/java/com/lyms/platform/pojo/AntenatalExaminationModel.java
- platform-operate-api/src/main/java/com/lyms/platform/operate/web/request/AntExAddRequest.java
- platform-operate-api/src/main/java/com/lyms/platform/operate/web/request/AntExcAddRequest.java
platform-dal/src/main/java/com/lyms/platform/pojo/AntExChuModel.java
View file @
1531fc4
... | ... | @@ -492,6 +492,122 @@ |
492 | 492 | //贫血等级 |
493 | 493 | private Integer xhdbLevel; |
494 | 494 | |
495 | + | |
496 | + //颈围 | |
497 | + private String jw; | |
498 | + //腰围 | |
499 | + private String yw; | |
500 | + | |
501 | + | |
502 | + | |
503 | + //BUN 尿素氮 | |
504 | + private String bun; | |
505 | + //Cr肌酐 | |
506 | + private String cr; | |
507 | + //UA尿酸 | |
508 | + private String ua; | |
509 | + //r-谷氨酰胺转移酶 | |
510 | + private String rgaxa; | |
511 | + | |
512 | + //FT3游离三碘甲状腺氨酸 | |
513 | + public String tf3; | |
514 | + //FT4血清游离甲状腺素 | |
515 | + public String tf4; | |
516 | + //促甲状腺激素(TSH) | |
517 | + public String ctsh; | |
518 | + //TGAb甲状腺球蛋白 | |
519 | + public String ctgab; | |
520 | + //TPOAb抗甲状腺过氧化物抗体 | |
521 | + public String ctpoab; | |
522 | + | |
523 | + public String getJw() { | |
524 | + return jw; | |
525 | + } | |
526 | + | |
527 | + public void setJw(String jw) { | |
528 | + this.jw = jw; | |
529 | + } | |
530 | + | |
531 | + public String getYw() { | |
532 | + return yw; | |
533 | + } | |
534 | + | |
535 | + public void setYw(String yw) { | |
536 | + this.yw = yw; | |
537 | + } | |
538 | + | |
539 | + public String getBun() { | |
540 | + return bun; | |
541 | + } | |
542 | + | |
543 | + public void setBun(String bun) { | |
544 | + this.bun = bun; | |
545 | + } | |
546 | + | |
547 | + public String getCr() { | |
548 | + return cr; | |
549 | + } | |
550 | + | |
551 | + public void setCr(String cr) { | |
552 | + this.cr = cr; | |
553 | + } | |
554 | + | |
555 | + public String getUa() { | |
556 | + return ua; | |
557 | + } | |
558 | + | |
559 | + public void setUa(String ua) { | |
560 | + this.ua = ua; | |
561 | + } | |
562 | + | |
563 | + public String getRgaxa() { | |
564 | + return rgaxa; | |
565 | + } | |
566 | + | |
567 | + public void setRgaxa(String rgaxa) { | |
568 | + this.rgaxa = rgaxa; | |
569 | + } | |
570 | + | |
571 | + public String getTf3() { | |
572 | + return tf3; | |
573 | + } | |
574 | + | |
575 | + public void setTf3(String tf3) { | |
576 | + this.tf3 = tf3; | |
577 | + } | |
578 | + | |
579 | + public String getTf4() { | |
580 | + return tf4; | |
581 | + } | |
582 | + | |
583 | + public void setTf4(String tf4) { | |
584 | + this.tf4 = tf4; | |
585 | + } | |
586 | + | |
587 | + public String getCtsh() { | |
588 | + return ctsh; | |
589 | + } | |
590 | + | |
591 | + public void setCtsh(String ctsh) { | |
592 | + this.ctsh = ctsh; | |
593 | + } | |
594 | + | |
595 | + public String getCtgab() { | |
596 | + return ctgab; | |
597 | + } | |
598 | + | |
599 | + public void setCtgab(String ctgab) { | |
600 | + this.ctgab = ctgab; | |
601 | + } | |
602 | + | |
603 | + public String getCtpoab() { | |
604 | + return ctpoab; | |
605 | + } | |
606 | + | |
607 | + public void setCtpoab(String ctpoab) { | |
608 | + this.ctpoab = ctpoab; | |
609 | + } | |
610 | + | |
495 | 611 | public Integer getXhdbLevel() { |
496 | 612 | return xhdbLevel; |
497 | 613 | } |
platform-dal/src/main/java/com/lyms/platform/pojo/AntenatalExaminationModel.java
View file @
1531fc4
... | ... | @@ -392,6 +392,37 @@ |
392 | 392 | private String teamId;//医生团队 |
393 | 393 | private String reason;//换团队的原因 |
394 | 394 | |
395 | + //血糖 | |
396 | + //空腹 | |
397 | + private String bloodSugarKf; | |
398 | + //1h | |
399 | + private String bloodSugar1h; | |
400 | + //2h | |
401 | + private String bloodSugar2h; | |
402 | + | |
403 | + public String getBloodSugarKf() { | |
404 | + return bloodSugarKf; | |
405 | + } | |
406 | + | |
407 | + public void setBloodSugarKf(String bloodSugarKf) { | |
408 | + this.bloodSugarKf = bloodSugarKf; | |
409 | + } | |
410 | + | |
411 | + public String getBloodSugar1h() { | |
412 | + return bloodSugar1h; | |
413 | + } | |
414 | + | |
415 | + public void setBloodSugar1h(String bloodSugar1h) { | |
416 | + this.bloodSugar1h = bloodSugar1h; | |
417 | + } | |
418 | + | |
419 | + public String getBloodSugar2h() { | |
420 | + return bloodSugar2h; | |
421 | + } | |
422 | + | |
423 | + public void setBloodSugar2h(String bloodSugar2h) { | |
424 | + this.bloodSugar2h = bloodSugar2h; | |
425 | + } | |
395 | 426 | |
396 | 427 | public String getTeamId() { |
397 | 428 | return teamId; |
platform-operate-api/src/main/java/com/lyms/platform/operate/web/request/AntExAddRequest.java
View file @
1531fc4
... | ... | @@ -119,6 +119,15 @@ |
119 | 119 | private String bloodSugar2; |
120 | 120 | private String bloodSugar3; |
121 | 121 | private String bloodSugar4; |
122 | + | |
123 | + //血糖 | |
124 | + //空腹 | |
125 | + private String bloodSugarKf; | |
126 | + //1h | |
127 | + private String bloodSugar1h; | |
128 | + //2h | |
129 | + private String bloodSugar2h; | |
130 | + | |
122 | 131 | //高危因素 |
123 | 132 | private List<String> riskFactor; |
124 | 133 | //筛查结果 |
... | ... | @@ -379,6 +388,31 @@ |
379 | 388 | private String oldTeamName;//变更前医生团队名字 |
380 | 389 | private String reason;//换团队的原因 |
381 | 390 | |
391 | + | |
392 | + public String getBloodSugarKf() { | |
393 | + return bloodSugarKf; | |
394 | + } | |
395 | + | |
396 | + public void setBloodSugarKf(String bloodSugarKf) { | |
397 | + this.bloodSugarKf = bloodSugarKf; | |
398 | + } | |
399 | + | |
400 | + public String getBloodSugar1h() { | |
401 | + return bloodSugar1h; | |
402 | + } | |
403 | + | |
404 | + public void setBloodSugar1h(String bloodSugar1h) { | |
405 | + this.bloodSugar1h = bloodSugar1h; | |
406 | + } | |
407 | + | |
408 | + public String getBloodSugar2h() { | |
409 | + return bloodSugar2h; | |
410 | + } | |
411 | + | |
412 | + public void setBloodSugar2h(String bloodSugar2h) { | |
413 | + this.bloodSugar2h = bloodSugar2h; | |
414 | + } | |
415 | + | |
382 | 416 | public String getTeamName() { |
383 | 417 | return teamName; |
384 | 418 | } |
... | ... | @@ -1485,6 +1519,9 @@ |
1485 | 1519 | //产团 |
1486 | 1520 | examinationModel.setTeamId(teamId); |
1487 | 1521 | examinationModel.setReason(reason); |
1522 | + examinationModel.setBloodSugarKf(bloodSugarKf); | |
1523 | + examinationModel.setBloodSugar1h(bloodSugar1h); | |
1524 | + examinationModel.setBloodSugar2h(bloodSugar2h); | |
1488 | 1525 | |
1489 | 1526 | return examinationModel; |
1490 | 1527 | } |
platform-operate-api/src/main/java/com/lyms/platform/operate/web/request/AntExcAddRequest.java
View file @
1531fc4
... | ... | @@ -368,14 +368,8 @@ |
368 | 368 | //D-二聚体(D-Dimer) |
369 | 369 | public String dimer; |
370 | 370 | /***血脂***/ |
371 | - //总胆固醇(TC) | |
372 | - public String totalChol; | |
373 | - //甘油三酯(TG) | |
374 | - public String tricer; | |
375 | - //高密度脂蛋白胆固醇(HDL-C) | |
376 | - public String highDens; | |
377 | - //低密度脂蛋白胆固醇(LDL-C) | |
378 | - public String lowDens; | |
371 | + | |
372 | + | |
379 | 373 | //载脂蛋白A1(ApoA1) |
380 | 374 | public String apolipa; |
381 | 375 | //载脂蛋白B(ApoB) |
... | ... | @@ -481,6 +475,130 @@ |
481 | 475 | private String teamId;//医生团队 |
482 | 476 | private String reason;//换团队的原因 |
483 | 477 | |
478 | + //颈围 | |
479 | + private String jw; | |
480 | + //腰围 | |
481 | + private String yw; | |
482 | + | |
483 | + //胆固醇(TC) | |
484 | + public String totalChol; | |
485 | + //甘油三酯(TG) | |
486 | + public String tricer; | |
487 | + | |
488 | + //高密度脂蛋白(HDL-C) | |
489 | + public String highDens; | |
490 | + //低密度脂蛋白(LDL-C) | |
491 | + public String lowDens; | |
492 | + | |
493 | + //BUN 尿素氮 | |
494 | + private String bun; | |
495 | + //Cr肌酐 | |
496 | + private String cr; | |
497 | + //UA尿酸 | |
498 | + private String ua; | |
499 | + //r-谷氨酰胺转移酶 | |
500 | + private String rgaxa; | |
501 | + | |
502 | + //FT3游离三碘甲状腺氨酸 | |
503 | + public String tf3; | |
504 | + //FT4血清游离甲状腺素 | |
505 | + public String tf4; | |
506 | + //促甲状腺激素(TSH) | |
507 | + public String ctsh; | |
508 | + //TGAb甲状腺球蛋白 | |
509 | + public String ctgab; | |
510 | + //TPOAb抗甲状腺过氧化物抗体 | |
511 | + public String ctpoab; | |
512 | + | |
513 | + | |
514 | + public String getJw() { | |
515 | + return jw; | |
516 | + } | |
517 | + | |
518 | + public void setJw(String jw) { | |
519 | + this.jw = jw; | |
520 | + } | |
521 | + | |
522 | + public String getYw() { | |
523 | + return yw; | |
524 | + } | |
525 | + | |
526 | + public void setYw(String yw) { | |
527 | + this.yw = yw; | |
528 | + } | |
529 | + | |
530 | + public String getBun() { | |
531 | + return bun; | |
532 | + } | |
533 | + | |
534 | + public void setBun(String bun) { | |
535 | + this.bun = bun; | |
536 | + } | |
537 | + | |
538 | + public String getCr() { | |
539 | + return cr; | |
540 | + } | |
541 | + | |
542 | + public void setCr(String cr) { | |
543 | + this.cr = cr; | |
544 | + } | |
545 | + | |
546 | + public String getUa() { | |
547 | + return ua; | |
548 | + } | |
549 | + | |
550 | + public void setUa(String ua) { | |
551 | + this.ua = ua; | |
552 | + } | |
553 | + | |
554 | + public String getRgaxa() { | |
555 | + return rgaxa; | |
556 | + } | |
557 | + | |
558 | + public void setRgaxa(String rgaxa) { | |
559 | + this.rgaxa = rgaxa; | |
560 | + } | |
561 | + | |
562 | + public String getTf3() { | |
563 | + return tf3; | |
564 | + } | |
565 | + | |
566 | + public void setTf3(String tf3) { | |
567 | + this.tf3 = tf3; | |
568 | + } | |
569 | + | |
570 | + public String getTf4() { | |
571 | + return tf4; | |
572 | + } | |
573 | + | |
574 | + public void setTf4(String tf4) { | |
575 | + this.tf4 = tf4; | |
576 | + } | |
577 | + | |
578 | + public String getCtsh() { | |
579 | + return ctsh; | |
580 | + } | |
581 | + | |
582 | + public void setCtsh(String ctsh) { | |
583 | + this.ctsh = ctsh; | |
584 | + } | |
585 | + | |
586 | + public String getCtgab() { | |
587 | + return ctgab; | |
588 | + } | |
589 | + | |
590 | + public void setCtgab(String ctgab) { | |
591 | + this.ctgab = ctgab; | |
592 | + } | |
593 | + | |
594 | + public String getCtpoab() { | |
595 | + return ctpoab; | |
596 | + } | |
597 | + | |
598 | + public void setCtpoab(String ctpoab) { | |
599 | + this.ctpoab = ctpoab; | |
600 | + } | |
601 | + | |
484 | 602 | public String getTeamId() { |
485 | 603 | return teamId; |
486 | 604 | } |
... | ... | @@ -2430,6 +2548,17 @@ |
2430 | 2548 | antExChuModel.setTeamId(teamId); |
2431 | 2549 | antExChuModel.setReason(reason); |
2432 | 2550 | |
2551 | + antExChuModel.setJw(jw); | |
2552 | + antExChuModel.setYw(yw); | |
2553 | + antExChuModel.setBun(bun); | |
2554 | + antExChuModel.setCr(cr); | |
2555 | + antExChuModel.setUa(ua); | |
2556 | + antExChuModel.setRgaxa(rgaxa); | |
2557 | + antExChuModel.setTf3(tf3); | |
2558 | + antExChuModel.setTf4(tf4); | |
2559 | + antExChuModel.setCtsh(ctsh); | |
2560 | + antExChuModel.setCtgab(ctgab); | |
2561 | + antExChuModel.setCtpoab(ctpoab); | |
2433 | 2562 | return antExChuModel; |
2434 | 2563 | } |
2435 | 2564 |