Commit 7fd2d2ad3bd2dc233ba9a099d716b6eb27689c6a
1 parent
a8b31b75c5
Exists in
master
and in
2 other branches
民生工程
Showing 1 changed file with 4 additions and 3 deletions
platform-operate-api/src/main/java/com/lyms/platform/operate/web/result/PatientManagerQueryModel.java
View file @
7fd2d2a
| 1 | 1 | package com.lyms.platform.operate.web.result; |
| 2 | 2 | |
| 3 | 3 | import java.util.List; |
| 4 | +import java.util.Map; | |
| 4 | 5 | |
| 5 | 6 | /** |
| 6 | 7 | * @auther HuJiaqi |
| ... | ... | @@ -119,7 +120,7 @@ |
| 119 | 120 | //高危因素 |
| 120 | 121 | private String riskFactorId; |
| 121 | 122 | //高危等级 |
| 122 | - private List<String> level; | |
| 123 | + private List<Map> level; | |
| 123 | 124 | //领劵社区 |
| 124 | 125 | private String couponCommunity; |
| 125 | 126 | /** |
| 126 | 127 | |
| ... | ... | @@ -152,11 +153,11 @@ |
| 152 | 153 | this.riskFactorId = riskFactorId; |
| 153 | 154 | } |
| 154 | 155 | |
| 155 | - public List<String> getLevel() { | |
| 156 | + public List<Map> getLevel() { | |
| 156 | 157 | return level; |
| 157 | 158 | } |
| 158 | 159 | |
| 159 | - public void setLevel(List<String> level) { | |
| 160 | + public void setLevel(List<Map> level) { | |
| 160 | 161 | this.level = level; |
| 161 | 162 | } |
| 162 | 163 |