Commit 309e29e0 authored by 喻春霖's avatar 喻春霖

fixed

parents 9e73ef08 32ccd872
...@@ -50,7 +50,7 @@ public class StatisticsController { ...@@ -50,7 +50,7 @@ public class StatisticsController {
if (CollectionUtils.isNotEmpty(clientList)){ if (CollectionUtils.isNotEmpty(clientList)){
clientList.forEach(item -> { clientList.forEach(item -> {
Map<String, Object> data = new HashMap<>(); Map<String, Object> data = new HashMap<>();
data.put("clientId", item.getKey()); data.put("code", item.getKey());
data.put("name", item.getName()); data.put("name", item.getName());
result.add(data); result.add(data);
}); });
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment