Commit 6b4feedee4c297a4350e78fcf1ec21093823f159
1 parent
5aaed428d3
Exists in
master
and in
6 other branches
儿童建档
Showing 2 changed files with 11 additions and 0 deletions
platform-operate-api/src/main/java/com/lyms/platform/operate/web/facade/BabyCheckFacade.java
View file @
6b4feed
... | ... | @@ -1800,6 +1800,7 @@ |
1800 | 1800 | result.setPatientId(model.getParentId()); |
1801 | 1801 | result.setBuildTime(DateUtil.getyyyy_MM_dd(model.getBuildDate())); |
1802 | 1802 | result.setHospitalName(organizationService.getOrganization(Integer.valueOf(hospitalId)).getName()); |
1803 | + result.setCertType(model.getMcertTypeId()); | |
1803 | 1804 | |
1804 | 1805 | result.setVcCardNo(model.getVcCardNo()); |
1805 | 1806 | result.setCardNo(model.getMcertNo()); |
platform-operate-api/src/main/java/com/lyms/platform/operate/web/result/BabyManageListResult.java
View file @
6b4feed
... | ... | @@ -61,6 +61,16 @@ |
61 | 61 | |
62 | 62 | private String vcCardNo; |
63 | 63 | |
64 | + private String certType; | |
65 | + | |
66 | + public String getCertType() { | |
67 | + return certType; | |
68 | + } | |
69 | + | |
70 | + public void setCertType(String certType) { | |
71 | + this.certType = certType; | |
72 | + } | |
73 | + | |
64 | 74 | public String getCardNo() { |
65 | 75 | return cardNo; |
66 | 76 | } |