Commit b6ffdf4aaa455d54a6187120787555940b325af8
1 parent
0bed809fe5
Exists in
master
and in
6 other branches
update
Showing 1 changed file with 6 additions and 6 deletions
platform-operate-api/src/main/java/com/lyms/platform/operate/web/result/BabyHighRiskBabyResult.java
View file @
b6ffdf4
... | ... | @@ -205,7 +205,7 @@ |
205 | 205 | 4神经心理行为发育监测和评估 |
206 | 206 | 5特殊检查 |
207 | 207 | */ |
208 | - private Integer evalMethod; | |
208 | + private List<Integer> evalMethod; | |
209 | 209 | |
210 | 210 | //处理 |
211 | 211 | /** |
212 | 212 | |
213 | 213 | |
214 | 214 | |
215 | 215 | |
... | ... | @@ -215,22 +215,22 @@ |
215 | 215 | 4结案 |
216 | 216 | 5其他 |
217 | 217 | */ |
218 | - private Integer handle; | |
218 | + private List<Integer> handle; | |
219 | 219 | private String handleOther; |
220 | 220 | |
221 | - public Integer getEvalMethod() { | |
221 | + public List<Integer> getEvalMethod() { | |
222 | 222 | return evalMethod; |
223 | 223 | } |
224 | 224 | |
225 | - public void setEvalMethod(Integer evalMethod) { | |
225 | + public void setEvalMethod( List<Integer> evalMethod) { | |
226 | 226 | this.evalMethod = evalMethod; |
227 | 227 | } |
228 | 228 | |
229 | - public Integer getHandle() { | |
229 | + public List<Integer> getHandle() { | |
230 | 230 | return handle; |
231 | 231 | } |
232 | 232 | |
233 | - public void setHandle(Integer handle) { | |
233 | + public void setHandle( List<Integer> handle) { | |
234 | 234 | this.handle = handle; |
235 | 235 | } |
236 | 236 |