Commit 78f81dbbfa3ad23ad72bfdf08609104a7f5e2040
1 parent
8a670df897
Exists in
master
and in
6 other branches
产检医生统计
Showing 3 changed files with 15 additions and 1 deletions
platform-biz-service/src/main/java/com/lyms/platform/permission/model/BabyPatientExtendEarFollowUp.java
View file @
78f81db
platform-operate-api/src/main/java/com/lyms/platform/operate/web/controller/FollowUpController.java
View file @
78f81db
| ... | ... | @@ -119,8 +119,9 @@ |
| 119 | 119 | } |
| 120 | 120 | } |
| 121 | 121 | //设置确诊结果 |
| 122 | - fuResult.setMarkResult(mrSb.toString()); | |
| 122 | + fuResult.setMarkResultStr(mrSb.toString()); | |
| 123 | 123 | } |
| 124 | + fuResult.setMarkResult(followUp.getMarkResult()); | |
| 124 | 125 | fuResult.setMarkDetail(followUp.getMarkDetail()); |
| 125 | 126 | fuResult.setFollowInfo(followUp.getFollowInfo()); |
| 126 | 127 | fuResult.setAudiphone(followUp.getAudiphone()); |
platform-operate-api/src/main/java/com/lyms/platform/operate/web/result/FollowUpOneResult.java
View file @
78f81db
| ... | ... | @@ -31,6 +31,10 @@ |
| 31 | 31 | */ |
| 32 | 32 | private String markResult; |
| 33 | 33 | /** |
| 34 | + * 确诊结果 | |
| 35 | + */ | |
| 36 | + private String markResultStr; | |
| 37 | + /** | |
| 34 | 38 | * 确诊详情 |
| 35 | 39 | */ |
| 36 | 40 | private String markDetail; |
| ... | ... | @@ -106,6 +110,14 @@ |
| 106 | 110 | * 当前月龄 |
| 107 | 111 | */ |
| 108 | 112 | private String cMonthAge; |
| 113 | + | |
| 114 | + public String getMarkResultStr() { | |
| 115 | + return markResultStr; | |
| 116 | + } | |
| 117 | + | |
| 118 | + public void setMarkResultStr(String markResultStr) { | |
| 119 | + this.markResultStr = markResultStr; | |
| 120 | + } | |
| 109 | 121 | |
| 110 | 122 | public String getcMonthAge() { |
| 111 | 123 | return cMonthAge; |