Commit a53448bb by 丁伟峰

日志修改为info

1 parent 365c4ab8
...@@ -31,7 +31,7 @@ public class WorkbenchController { ...@@ -31,7 +31,7 @@ public class WorkbenchController {
@GetMapping("/workbench/engineer/schedule/gantt") @GetMapping("/workbench/engineer/schedule/gantt")
public Result<?> getEngineersGanttList(WorkbenchEngineersGanttReqDTO reqDTO) { public Result<?> getEngineersGanttList(WorkbenchEngineersGanttReqDTO reqDTO) {
log.debug("getEngineersGanttList: {}", reqDTO); log.info("getEngineersGanttList: {}", reqDTO);
Result<?> res = null; Result<?> res = null;
try { try {
res = workbenchService.getEngineersGanttList(reqDTO); res = workbenchService.getEngineersGanttList(reqDTO);
......
...@@ -73,7 +73,7 @@ public class WorkbenchServiceImpl implements WorkbenchService { ...@@ -73,7 +73,7 @@ public class WorkbenchServiceImpl implements WorkbenchService {
@Override @Override
public Result<?> getEngineersGanttList(WorkbenchEngineersGanttReqDTO ganttReqDTO) { public Result<?> getEngineersGanttList(WorkbenchEngineersGanttReqDTO ganttReqDTO) {
// 按日期返回技术员们当天的服务甘特图,不需要翻页 // 按日期返回技术员们当天的服务甘特图,不需要翻页
log.debug("getEngineersGanttList: {}", ganttReqDTO); log.info("getEngineersGanttList: {}", ganttReqDTO);
List<?> orderAppointments = orderAppointmentDao.findByDateAndEngineerCodeIn(ganttReqDTO.getDate(), ganttReqDTO.getEngineerCodes()); List<?> orderAppointments = orderAppointmentDao.findByDateAndEngineerCodeIn(ganttReqDTO.getDate(), ganttReqDTO.getEngineerCodes());
HashMap<String, List<?>> mapEngineers = new HashMap<>(); HashMap<String, List<?>> mapEngineers = new HashMap<>();
for (Object e : orderAppointments) { for (Object e : orderAppointments) {
......
Markdown is supported
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!