Commit b73ab2d45e6d1b0db000a49f8adbc85e54ed1d94
1 parent
aa0506ebcc
Exists in
master
and in
1 other branch
孕妇分娩后 变成产妇
Showing 1 changed file with 6 additions and 4 deletions
platform-operate-api/src/main/java/com/lyms/platform/operate/web/controller/PuerperaManageController.java
View file @
b73ab2d
... | ... | @@ -126,10 +126,12 @@ |
126 | 126 | Map<String, Object> map = new HashMap<>(); |
127 | 127 | map.put("gwfz", basicConfigFacade.getBaseicConfigByParentId(SystemConfig.FXYS)); |
128 | 128 | List list = new ArrayList(); |
129 | - list.add(5); | |
130 | - list.add(10); | |
131 | - list.add(15); | |
132 | - list.add(20); | |
129 | + for(int i=0;i<=100;i++){ | |
130 | + list.add(i); | |
131 | + } | |
132 | + | |
133 | + | |
134 | + | |
133 | 135 | map.put("score", list); |
134 | 136 | map.put("organizations", antenatalExaminationFacade.convert()); |
135 | 137 | return new BaseObjectResponse().setData(map).setErrorcode(ErrorCodeConstants.SUCCESS).setErrormsg("成功"); |