Commit 4556af85aed01d55277b8f2cc501a4187a8ba9e7
1 parent
84ccd86ce0
Exists in
master
and in
6 other branches
2022-6-8 隆化男女婚检增加B超字段
Showing 3 changed files with 31 additions and 0 deletions
platform-dal/src/main/java/com/lyms/platform/pojo/PremaritalCheckup.java
View file @
4556af8
... | ... | @@ -581,6 +581,16 @@ |
581 | 581 | //胺臭味试验26 |
582 | 582 | private String acwsy; |
583 | 583 | |
584 | + //2022-6-8 隆化增加B超字段 | |
585 | + private String lhbc; | |
586 | + | |
587 | + public String getLhbc() { | |
588 | + return lhbc; | |
589 | + } | |
590 | + | |
591 | + public void setLhbc(String lhbc) { | |
592 | + this.lhbc = lhbc; | |
593 | + } | |
584 | 594 | public static long getSerialVersionUID() { |
585 | 595 | return serialVersionUID; |
586 | 596 | } |
platform-operate-api/src/main/java/com/lyms/platform/operate/web/request/PremaritalCheckupAddRequest.java
View file @
4556af8
... | ... | @@ -571,6 +571,16 @@ |
571 | 571 | private String lqj; |
572 | 572 | //胺臭味试验26 |
573 | 573 | private String acwsy; |
574 | + //2022-6-8 隆化增加B超字段 | |
575 | + private String lhbc; | |
576 | + | |
577 | + public String getLhbc() { | |
578 | + return lhbc; | |
579 | + } | |
580 | + | |
581 | + public void setLhbc(String lhbc) { | |
582 | + this.lhbc = lhbc; | |
583 | + } | |
574 | 584 | |
575 | 585 | public String getGuidTime() { |
576 | 586 | return guidTime; |
platform-operate-api/src/main/java/com/lyms/platform/operate/web/result/PremaritalCheckupResult.java
View file @
4556af8
... | ... | @@ -550,6 +550,17 @@ |
550 | 550 | //医院ID(基础字段) |
551 | 551 | private String hospitalId; |
552 | 552 | |
553 | + //2022-6-8 隆化增加B超字段 | |
554 | + private String lhbc; | |
555 | + | |
556 | + public String getLhbc() { | |
557 | + return lhbc; | |
558 | + } | |
559 | + | |
560 | + public void setLhbc(String lhbc) { | |
561 | + this.lhbc = lhbc; | |
562 | + } | |
563 | + | |
553 | 564 | public String getGuidHospitalId() { |
554 | 565 | return guidHospitalId; |
555 | 566 | } |