56 lines
2.3 KiB
Java
56 lines
2.3 KiB
Java
package com.cnbm.scheduletask.controller;
|
||
|
||
import com.cnbm.common.constant.Constant;
|
||
import com.cnbm.common.page.PageData;
|
||
import com.cnbm.common.utils.Result;
|
||
import com.cnbm.scheduletask.dto.ScheduleJobLogDTO;
|
||
import com.cnbm.scheduletask.service.ScheduleJobLogService;
|
||
import io.swagger.annotations.Api;
|
||
import io.swagger.annotations.ApiImplicitParam;
|
||
import io.swagger.annotations.ApiImplicitParams;
|
||
import io.swagger.annotations.ApiOperation;
|
||
import org.springframework.beans.factory.annotation.Autowired;
|
||
import org.springframework.security.access.prepost.PreAuthorize;
|
||
import org.springframework.web.bind.annotation.*;
|
||
import springfox.documentation.annotations.ApiIgnore;
|
||
|
||
import java.util.Map;
|
||
|
||
/**
|
||
* @Author weihongyang
|
||
* @Date 2022/6/24 8:58 AM
|
||
* @Version 1.0
|
||
*/
|
||
@RestController
|
||
@RequestMapping("/sys/scheduleLog")
|
||
@Api(tags="定时任务日志")
|
||
public class ScheduleJobLogController {
|
||
@Autowired
|
||
private ScheduleJobLogService scheduleJobLogService;
|
||
|
||
@GetMapping("page")
|
||
@ApiOperation("分页")
|
||
@ApiImplicitParams({
|
||
@ApiImplicitParam(name = Constant.PAGE, value = "当前页码,从1开始", paramType = "query", required = true, dataTypeClass=Integer.class) ,
|
||
@ApiImplicitParam(name = Constant.LIMIT, value = "每页显示记录数", paramType = "query",required = true, dataTypeClass=Integer.class) ,
|
||
@ApiImplicitParam(name = Constant.ORDER_FIELD, value = "排序字段", paramType = "query", dataTypeClass=String.class) ,
|
||
@ApiImplicitParam(name = Constant.ORDER, value = "排序方式,可选值(asc、desc)", paramType = "query", dataTypeClass=String.class) ,
|
||
@ApiImplicitParam(name = "jobId", value = "jobId", paramType = "query", dataType="String")
|
||
})
|
||
@PreAuthorize("@ex.hasAuthority('sys:schedule:log')")
|
||
public Result<PageData<ScheduleJobLogDTO>> page(@ApiIgnore @RequestParam Map<String, Object> params){
|
||
PageData<ScheduleJobLogDTO> page = scheduleJobLogService.page(params);
|
||
|
||
return new Result<PageData<ScheduleJobLogDTO>>().ok(page);
|
||
}
|
||
|
||
@GetMapping("{id}")
|
||
@ApiOperation("信息")
|
||
@PreAuthorize("@ex.hasAuthority('sys:schedule:log')")
|
||
public Result<ScheduleJobLogDTO> info(@PathVariable("id") Long id){
|
||
ScheduleJobLogDTO log = scheduleJobLogService.get(id);
|
||
|
||
return new Result<ScheduleJobLogDTO>().ok(log);
|
||
}
|
||
}
|