Commit d71be6f5 by huangjinxin

fix:日志测试

1 parent 8b2682b6
......@@ -90,7 +90,7 @@ public class WorkbenchServiceImpl implements WorkbenchService {
@Override
public Result<?> getWorkbenchSummary(String levelType, String levelValue, LocalDate dt) {
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));
WorkbenchSummaryResp.ItemDTO methodItem = new WorkbenchSummaryResp.ItemDTO();
......@@ -116,6 +116,7 @@ public class WorkbenchServiceImpl implements WorkbenchService {
WorkbenchSummaryResp res = new WorkbenchSummaryResp();
res.setSummary(items);
log.info("getWorkbenchSummary 成功");
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!