|
|
|
@ -3,15 +3,14 @@ package com.glxp.udidl.admin.controller.info;
|
|
|
|
|
import com.glxp.udidl.admin.annotation.AuthRuleAnnotation;
|
|
|
|
|
import com.glxp.udidl.admin.entity.udid.JobLog;
|
|
|
|
|
import com.glxp.udidl.admin.req.udid.JobLogFilterRequest;
|
|
|
|
|
import com.glxp.udidl.admin.req.udid.JobRequest;
|
|
|
|
|
import com.glxp.udidl.admin.res.BaseResponse;
|
|
|
|
|
import com.glxp.udidl.admin.service.udi.JobLogService;
|
|
|
|
|
import com.glxp.udidl.admin.util.ResultVOUtils;
|
|
|
|
|
import io.swagger.annotations.Api;
|
|
|
|
|
import io.swagger.annotations.ApiOperation;
|
|
|
|
|
import org.springframework.beans.factory.annotation.Autowired;
|
|
|
|
|
import org.springframework.web.bind.annotation.PostMapping;
|
|
|
|
|
import org.springframework.web.bind.annotation.RequestBody;
|
|
|
|
|
import org.springframework.web.bind.annotation.RequestMapping;
|
|
|
|
|
import org.springframework.web.bind.annotation.RestController;
|
|
|
|
|
import org.springframework.web.bind.annotation.*;
|
|
|
|
|
|
|
|
|
|
@Api(tags = "任务日志接口")
|
|
|
|
|
@RestController
|
|
|
|
@ -28,4 +27,16 @@ public class JobLogController {
|
|
|
|
|
return jobLogService.getList(jobLogFilterRequest);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
@AuthRuleAnnotation("jobLog/delete")
|
|
|
|
|
@PostMapping("/delete")
|
|
|
|
|
public BaseResponse deleteById(@RequestBody JobRequest jobRequest) {
|
|
|
|
|
int result = jobLogService.deleteById(jobRequest.getJobId());
|
|
|
|
|
if (result != -1) {
|
|
|
|
|
return ResultVOUtils.success("删除成功");
|
|
|
|
|
} else {
|
|
|
|
|
return ResultVOUtils.error(500, "下载失败!");
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|