Commit d71be6f5 by huangjinxin

fix:日志测试

1 parent 8b2682b6
...@@ -90,7 +90,7 @@ public class WorkbenchServiceImpl implements WorkbenchService { ...@@ -90,7 +90,7 @@ public class WorkbenchServiceImpl implements WorkbenchService {
@Override @Override
public Result<?> getWorkbenchSummary(String levelType, String levelValue, LocalDate dt) { public Result<?> getWorkbenchSummary(String levelType, String levelValue, LocalDate dt) {
List<WorkbenchSummaryResp.ItemDTO> items = new ArrayList<>(); List<WorkbenchSummaryResp.ItemDTO> items = new ArrayList<>();
log.info("getWorkbenchSummary , levelType:{},levelValue:{},dt:{}", levelType, levelValue, dt);
//处理工单分配状态 待人工处理 待自动处理 全部订单 //处理工单分配状态 待人工处理 待自动处理 全部订单
HashMap<String, Long> methodSummary = this.transAppointmentMethod(this.queryCountByAppointmentMethod(levelType, levelValue, dt)); HashMap<String, Long> methodSummary = this.transAppointmentMethod(this.queryCountByAppointmentMethod(levelType, levelValue, dt));
WorkbenchSummaryResp.ItemDTO methodItem = new WorkbenchSummaryResp.ItemDTO(); WorkbenchSummaryResp.ItemDTO methodItem = new WorkbenchSummaryResp.ItemDTO();
...@@ -116,6 +116,7 @@ public class WorkbenchServiceImpl implements WorkbenchService { ...@@ -116,6 +116,7 @@ public class WorkbenchServiceImpl implements WorkbenchService {
WorkbenchSummaryResp res = new WorkbenchSummaryResp(); WorkbenchSummaryResp res = new WorkbenchSummaryResp();
res.setSummary(items); res.setSummary(items);
log.info("getWorkbenchSummary 成功");
return Result.success(res); return Result.success(res);
} }
......
Markdown is supported
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!