zjj
3 天以前 987f22ecac693908e6cc32de6eafef09e2c836b6
rsf-server/src/main/java/com/vincent/rsf/server/manager/controller/TaskLogController.java
@@ -30,7 +30,9 @@
    public R page(@RequestBody Map<String, Object> map) {
        BaseParam baseParam = buildParam(map, BaseParam.class);
        PageParam<TaskLog, BaseParam> pageParam = new PageParam<>(baseParam, TaskLog.class);
        return R.ok().add(taskLogService.page(pageParam, pageParam.buildWrapper(true)));
//        PageParam<TaskLog, BaseParam> logs = taskLogService.page(pageParam, pageParam.buildWrapper(true));
        return R.ok(taskLogService.page(pageParam, pageParam.buildWrapper(true)));
//        return R.ok().add(taskLogService.page(pageParam, pageParam.buildWrapper(true)));
    }
    @PreAuthorize("hasAuthority('manager:taskLog:list')")