Commit 73f3d391d91ccf480c21b2626b40244f23459db3
1 parent
028467ccd8
Exists in
master
and in
6 other branches
排序
Showing 1 changed file with 2 additions and 1 deletions
platform-operate-api/src/main/java/com/lyms/platform/operate/web/service/impl/ReportServiceImpl.java
View file @
73f3d39
... | ... | @@ -582,7 +582,8 @@ |
582 | 582 | Set<Map.Entry<String, Object>> entries = temp.entrySet(); |
583 | 583 | for (Map.Entry<String, Object> entry : entries) { |
584 | 584 | Map<String, Object> m = new HashMap<>(); |
585 | - m.put(entry.getKey(), entry.getValue()); | |
585 | + m.put("name", entry.getValue()); | |
586 | + m.put("value", entry.getKey()); | |
586 | 587 | couponReportMap.add(m); |
587 | 588 | } |
588 | 589 |