Commit 43d25133 by huluobin

update

parent 645b8ccd
...@@ -64,7 +64,10 @@ public class ScheduleManageController { ...@@ -64,7 +64,10 @@ public class ScheduleManageController {
@ApiModelProperty("查询可预约时间列表") @ApiModelProperty("查询可预约时间列表")
@PostMapping("/customer/schedule/queryIdleTime") @PostMapping("/customer/schedule/queryIdleTime")
public JsonResult<List<IdleTimeDTO>> queryIdleTime(@RequestBody IdleTimeQuery qry) throws ParseException, ExecutionException, InterruptedException { public JsonResult<List<IdleTimeDTO>> queryIdleTime(@RequestBody IdleTimeQuery qry) throws ParseException, ExecutionException, InterruptedException {
long time = System.currentTimeMillis();
log.info("time:{}", time);
List<IdleTimeDTO> idleTimeDTOList = scheduleManageService.queryIdleTime(qry); List<IdleTimeDTO> idleTimeDTOList = scheduleManageService.queryIdleTime(qry);
log.info("time:{}", time - System.currentTimeMillis());
return JsonResult.success(idleTimeDTOList); return JsonResult.success(idleTimeDTOList);
} }
......
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