Commit eb18cef8cf42b83cb98c81123bf5cefa9b64d862
1 parent
36ed08b36f
Exists in
master
and in
1 other branch
儿童档案编号
Showing 3 changed files with 14 additions and 0 deletions
platform-operate-api/src/main/java/com/lyms/platform/operate/web/facade/BabyEarFacade.java
View file @
eb18cef
| ... | ... | @@ -1552,6 +1552,7 @@ |
| 1552 | 1552 | babyEarBaseView.setServiceType(ServiceTypeEnums.getTitleById(babyEarBase.getServiceType())); |
| 1553 | 1553 | babyEarBaseView.setServiceStatus(ServiceStatusEnums.getNameById(babyEarBase.getServiceStatus())); |
| 1554 | 1554 | babyEarBaseView.setMonthAge(babyEarBase.getMonthAge()); |
| 1555 | + babyEarBaseView.setFileCode(babyEarBase.getFileCode()); | |
| 1555 | 1556 | return babyEarBaseView; |
| 1556 | 1557 | } |
| 1557 | 1558 |
platform-operate-api/src/main/java/com/lyms/platform/operate/web/request/BabyEarBase.java
View file @
eb18cef
platform-operate-api/src/main/java/com/lyms/platform/operate/web/result/BabyEarBaseView.java
View file @
eb18cef
| ... | ... | @@ -102,6 +102,18 @@ |
| 102 | 102 | //备注 |
| 103 | 103 | private String remark; |
| 104 | 104 | |
| 105 | + | |
| 106 | + //档案编号 滦平需求 | |
| 107 | + private String fileCode; | |
| 108 | + | |
| 109 | + public String getFileCode() { | |
| 110 | + return fileCode; | |
| 111 | + } | |
| 112 | + | |
| 113 | + public void setFileCode(String fileCode) { | |
| 114 | + this.fileCode = fileCode; | |
| 115 | + } | |
| 116 | + | |
| 105 | 117 | public List<PatientSerResult> getPatientSerResults() { |
| 106 | 118 | return patientSerResults; |
| 107 | 119 | } |