Commit a0f75820286131dcf253b781d18bbef2af714fd8
1 parent
c8057ae6e4
Exists in
master
and in
6 other branches
听力诊断模块
Showing 2 changed files with 13 additions and 1 deletions
platform-operate-api/src/main/java/com/lyms/platform/operate/web/controller/FollowUpController.java
View file @
a0f7582
| ... | ... | @@ -158,7 +158,7 @@ |
| 158 | 158 | fuResult.setIsArtifiCochlea(followUp.getIsArtifiCochlea()); |
| 159 | 159 | fuResult.setIsAudiphone(followUp.getIsAudiphone()); |
| 160 | 160 | fuResult.setIsOperation(followUp.getIsOperation()); |
| 161 | - | |
| 161 | + fuResult.setVerdict(followUp.getVerdict()); | |
| 162 | 162 | |
| 163 | 163 | StringBuffer interStrate = new StringBuffer(); |
| 164 | 164 |
platform-operate-api/src/main/java/com/lyms/platform/operate/web/result/FollowUpOneResult.java
View file @
a0f7582
| ... | ... | @@ -101,6 +101,10 @@ |
| 101 | 101 | */ |
| 102 | 102 | private String ifcloseStr; |
| 103 | 103 | /** |
| 104 | + * 结案结论 | |
| 105 | + */ | |
| 106 | + private String verdict; | |
| 107 | + /** | |
| 104 | 108 | * 医院ID |
| 105 | 109 | */ |
| 106 | 110 | private String hospitalId; |
| ... | ... | @@ -116,6 +120,14 @@ |
| 116 | 120 | * 当前月龄 |
| 117 | 121 | */ |
| 118 | 122 | private String cMonthAge; |
| 123 | + | |
| 124 | + public String getVerdict() { | |
| 125 | + return verdict; | |
| 126 | + } | |
| 127 | + | |
| 128 | + public void setVerdict(String verdict) { | |
| 129 | + this.verdict = verdict; | |
| 130 | + } | |
| 119 | 131 | |
| 120 | 132 | public String getMarkResultStr() { |
| 121 | 133 | return markResultStr; |