Commit 4b439f66 by wangli

修复赋值错误

1 parent da85dc10
...@@ -92,8 +92,8 @@ public class WorkbenchServiceImpl implements WorkbenchService { ...@@ -92,8 +92,8 @@ public class WorkbenchServiceImpl implements WorkbenchService {
HashMap<String, Integer> statusSummary = this.transOrderStatus(this.queryCountByOrderStatus(levelType, levelValue, dt)); HashMap<String, Integer> statusSummary = this.transOrderStatus(this.queryCountByOrderStatus(levelType, levelValue, dt));
WorkbenchSummaryResp.ItemDTO statusItem = new WorkbenchSummaryResp.ItemDTO(); WorkbenchSummaryResp.ItemDTO statusItem = new WorkbenchSummaryResp.ItemDTO();
methodItem.setType("order"); statusItem.setType("order");
methodItem.setRows(this.packValueOrderStatus(statusSummary)); statusItem.setRows(this.packValueOrderStatus(statusSummary));
items.add(statusItem); items.add(statusItem);
WorkbenchSummaryResp res = new WorkbenchSummaryResp(); WorkbenchSummaryResp res = new WorkbenchSummaryResp();
......
Markdown is supported
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!