Commit aab31b37dd5cd05773cebcca1a1c22392b752272
1 parent
3942af0a8e
Exists in
master
and in
1 other branch
增加设置parentid
Showing 1 changed file with 3 additions and 4 deletions
platform-operate-api/src/main/java/com/lyms/platform/operate/web/facade/ApplyOrderFacade.java
View file @
aab31b3
... | ... | @@ -482,10 +482,9 @@ |
482 | 482 | Map<String, Object> map = new HashMap<>(); |
483 | 483 | map.put("gwfz", basicConfigFacade.getBaseicConfigByParentId(SystemConfig.HIGH_RISK_ID)); |
484 | 484 | List list = new ArrayList(); |
485 | - list.add(5); | |
486 | - list.add(10); | |
487 | - list.add(15); | |
488 | - list.add(20); | |
485 | + for(int i=0;i<=100;i=i+5){ | |
486 | + list.add(i); | |
487 | + } | |
489 | 488 | map.put("score", list); |
490 | 489 | map.put("organizations", antenatalExaminationFacade.convert()); |
491 | 490 | return new BaseObjectResponse().setData(map).setErrorcode(ErrorCodeConstants.SUCCESS).setErrormsg("成功"); |