24 changed files with 555 additions and 9 deletions
@ -0,0 +1,32 @@ |
|||||||
|
package cn.iocoder.yudao.framework.common.pojo; |
||||||
|
|
||||||
|
import lombok.Data; |
||||||
|
|
||||||
|
import javax.validation.constraints.NotEmpty; |
||||||
|
import javax.validation.constraints.NotNull; |
||||||
|
|
||||||
|
@Data |
||||||
|
public class JobSaveReqVO { |
||||||
|
|
||||||
|
private Long id; |
||||||
|
|
||||||
|
@NotEmpty(message = "任务名称不能为空") |
||||||
|
private String name; |
||||||
|
|
||||||
|
@NotEmpty(message = "处理器的名字不能为空") |
||||||
|
private String handlerName; |
||||||
|
|
||||||
|
private String handlerParam; |
||||||
|
|
||||||
|
@NotEmpty(message = "CRON 表达式不能为空") |
||||||
|
private String cronExpression; |
||||||
|
|
||||||
|
@NotNull(message = "重试次数不能为空") |
||||||
|
private Integer retryCount; |
||||||
|
|
||||||
|
@NotNull(message = "重试间隔不能为空") |
||||||
|
private Integer retryInterval; |
||||||
|
|
||||||
|
private Integer monitorTimeout; |
||||||
|
|
||||||
|
} |
@ -0,0 +1,13 @@ |
|||||||
|
package cn.iocoder.yudao.module.infra.api.job; |
||||||
|
|
||||||
|
import cn.iocoder.yudao.framework.common.pojo.JobSaveReqVO; |
||||||
|
|
||||||
|
import javax.validation.Valid; |
||||||
|
import java.util.Map; |
||||||
|
import cn.iocoder.yudao.framework.common.pojo.JobSaveReqVO; |
||||||
|
|
||||||
|
public interface JobApi { |
||||||
|
|
||||||
|
Long createJob(JobSaveReqVO jobSaveReqVO) throws Throwable; |
||||||
|
|
||||||
|
} |
@ -0,0 +1,22 @@ |
|||||||
|
package cn.iocoder.yudao.module.infra.api.job; |
||||||
|
|
||||||
|
import cn.iocoder.yudao.module.infra.service.job.JobService; |
||||||
|
|
||||||
|
import javax.annotation.Resource; |
||||||
|
import java.util.Map; |
||||||
|
import cn.iocoder.yudao.framework.common.pojo.JobSaveReqVO; |
||||||
|
import org.quartz.SchedulerException; |
||||||
|
import org.springframework.stereotype.Service; |
||||||
|
|
||||||
|
@Service |
||||||
|
public class JobApiImpl implements JobApi |
||||||
|
{ |
||||||
|
|
||||||
|
@Resource |
||||||
|
private JobService jobService; |
||||||
|
|
||||||
|
@Override |
||||||
|
public Long createJob(JobSaveReqVO jobSaveReqVO) throws Throwable { |
||||||
|
return jobService.createJob(jobSaveReqVO); |
||||||
|
} |
||||||
|
} |
@ -0,0 +1,95 @@ |
|||||||
|
package cn.iocoder.yudao.module.system.controller.admin.tasktag; |
||||||
|
|
||||||
|
import org.springframework.web.bind.annotation.*; |
||||||
|
import org.springframework.validation.annotation.Validated; |
||||||
|
import org.springframework.security.access.prepost.PreAuthorize; |
||||||
|
import io.swagger.v3.oas.annotations.tags.Tag; |
||||||
|
import io.swagger.v3.oas.annotations.Parameter; |
||||||
|
import io.swagger.v3.oas.annotations.Operation; |
||||||
|
|
||||||
|
import java.util.*; |
||||||
|
import java.io.IOException; |
||||||
|
|
||||||
|
import cn.iocoder.yudao.framework.common.pojo.PageParam; |
||||||
|
import cn.iocoder.yudao.framework.common.pojo.PageResult; |
||||||
|
import cn.iocoder.yudao.framework.common.pojo.CommonResult; |
||||||
|
import cn.iocoder.yudao.framework.common.util.object.BeanUtils; |
||||||
|
import static cn.iocoder.yudao.framework.common.pojo.CommonResult.success; |
||||||
|
|
||||||
|
import cn.iocoder.yudao.framework.excel.core.util.ExcelUtils; |
||||||
|
|
||||||
|
import cn.iocoder.yudao.framework.apilog.core.annotation.ApiAccessLog; |
||||||
|
import static cn.iocoder.yudao.framework.apilog.core.enums.OperateTypeEnum.*; |
||||||
|
|
||||||
|
import cn.iocoder.yudao.module.system.controller.admin.tasktag.vo.*; |
||||||
|
import cn.iocoder.yudao.module.system.dal.dataobject.tasktag.TaskTagDO; |
||||||
|
import cn.iocoder.yudao.module.system.service.tasktag.TaskTagService; |
||||||
|
|
||||||
|
import javax.annotation.Resource; |
||||||
|
import javax.servlet.http.HttpServletResponse; |
||||||
|
import javax.validation.Valid; |
||||||
|
|
||||||
|
@Tag(name = "管理后台 - 任务标签关联") |
||||||
|
@RestController |
||||||
|
@RequestMapping("/system/task-tag") |
||||||
|
@Validated |
||||||
|
public class TaskTagController { |
||||||
|
|
||||||
|
@Resource |
||||||
|
private TaskTagService taskTagService; |
||||||
|
|
||||||
|
@PostMapping("/create") |
||||||
|
@Operation(summary = "创建任务标签关联") |
||||||
|
@PreAuthorize("@ss.hasPermission('system:task-tag:create')") |
||||||
|
public CommonResult<Long> createTaskTag(@Valid @RequestBody TaskTagSaveReqVO createReqVO) { |
||||||
|
return success(taskTagService.createTaskTag(createReqVO)); |
||||||
|
} |
||||||
|
|
||||||
|
@PutMapping("/update") |
||||||
|
@Operation(summary = "更新任务标签关联") |
||||||
|
@PreAuthorize("@ss.hasPermission('system:task-tag:update')") |
||||||
|
public CommonResult<Boolean> updateTaskTag(@Valid @RequestBody TaskTagSaveReqVO updateReqVO) { |
||||||
|
taskTagService.updateTaskTag(updateReqVO); |
||||||
|
return success(true); |
||||||
|
} |
||||||
|
|
||||||
|
@DeleteMapping("/delete") |
||||||
|
@Operation(summary = "删除任务标签关联") |
||||||
|
@Parameter(name = "id", description = "编号", required = true) |
||||||
|
@PreAuthorize("@ss.hasPermission('system:task-tag:delete')") |
||||||
|
public CommonResult<Boolean> deleteTaskTag(@RequestParam("id") Long id) { |
||||||
|
taskTagService.deleteTaskTag(id); |
||||||
|
return success(true); |
||||||
|
} |
||||||
|
|
||||||
|
@GetMapping("/get") |
||||||
|
@Operation(summary = "获得任务标签关联") |
||||||
|
@Parameter(name = "id", description = "编号", required = true, example = "1024") |
||||||
|
@PreAuthorize("@ss.hasPermission('system:task-tag:query')") |
||||||
|
public CommonResult<TaskTagRespVO> getTaskTag(@RequestParam("id") Long id) { |
||||||
|
TaskTagDO taskTag = taskTagService.getTaskTag(id); |
||||||
|
return success(BeanUtils.toBean(taskTag, TaskTagRespVO.class)); |
||||||
|
} |
||||||
|
|
||||||
|
@GetMapping("/page") |
||||||
|
@Operation(summary = "获得任务标签关联分页") |
||||||
|
@PreAuthorize("@ss.hasPermission('system:task-tag:query')") |
||||||
|
public CommonResult<PageResult<TaskTagRespVO>> getTaskTagPage(@Valid TaskTagPageReqVO pageReqVO) { |
||||||
|
PageResult<TaskTagDO> pageResult = taskTagService.getTaskTagPage(pageReqVO); |
||||||
|
return success(BeanUtils.toBean(pageResult, TaskTagRespVO.class)); |
||||||
|
} |
||||||
|
|
||||||
|
@GetMapping("/export-excel") |
||||||
|
@Operation(summary = "导出任务标签关联 Excel") |
||||||
|
@PreAuthorize("@ss.hasPermission('system:task-tag:export')") |
||||||
|
@ApiAccessLog(operateType = EXPORT) |
||||||
|
public void exportTaskTagExcel(@Valid TaskTagPageReqVO pageReqVO, |
||||||
|
HttpServletResponse response) throws IOException { |
||||||
|
pageReqVO.setPageSize(PageParam.PAGE_SIZE_NONE); |
||||||
|
List<TaskTagDO> list = taskTagService.getTaskTagPage(pageReqVO).getList(); |
||||||
|
// 导出 Excel
|
||||||
|
ExcelUtils.write(response, "任务标签关联.xls", "数据", TaskTagRespVO.class, |
||||||
|
BeanUtils.toBean(list, TaskTagRespVO.class)); |
||||||
|
} |
||||||
|
|
||||||
|
} |
@ -0,0 +1,28 @@ |
|||||||
|
package cn.iocoder.yudao.module.system.controller.admin.tasktag.vo; |
||||||
|
|
||||||
|
import lombok.*; |
||||||
|
import java.util.*; |
||||||
|
import io.swagger.v3.oas.annotations.media.Schema; |
||||||
|
import cn.iocoder.yudao.framework.common.pojo.PageParam; |
||||||
|
import org.springframework.format.annotation.DateTimeFormat; |
||||||
|
import java.time.LocalDateTime; |
||||||
|
|
||||||
|
import static cn.iocoder.yudao.framework.common.util.date.DateUtils.FORMAT_YEAR_MONTH_DAY_HOUR_MINUTE_SECOND; |
||||||
|
|
||||||
|
@Schema(description = "管理后台 - 任务标签关联分页 Request VO") |
||||||
|
@Data |
||||||
|
@EqualsAndHashCode(callSuper = true) |
||||||
|
@ToString(callSuper = true) |
||||||
|
public class TaskTagPageReqVO extends PageParam { |
||||||
|
|
||||||
|
@Schema(description = "企业id", example = "19196") |
||||||
|
private Long taskId; |
||||||
|
|
||||||
|
@Schema(description = "标签id", example = "12139") |
||||||
|
private Long tagId; |
||||||
|
|
||||||
|
@Schema(description = "创建时间") |
||||||
|
@DateTimeFormat(pattern = FORMAT_YEAR_MONTH_DAY_HOUR_MINUTE_SECOND) |
||||||
|
private LocalDateTime[] createTime; |
||||||
|
|
||||||
|
} |
@ -0,0 +1,31 @@ |
|||||||
|
package cn.iocoder.yudao.module.system.controller.admin.tasktag.vo; |
||||||
|
|
||||||
|
import io.swagger.v3.oas.annotations.media.Schema; |
||||||
|
import lombok.*; |
||||||
|
import java.util.*; |
||||||
|
import org.springframework.format.annotation.DateTimeFormat; |
||||||
|
import java.time.LocalDateTime; |
||||||
|
import com.alibaba.excel.annotation.*; |
||||||
|
|
||||||
|
@Schema(description = "管理后台 - 任务标签关联 Response VO") |
||||||
|
@Data |
||||||
|
@ExcelIgnoreUnannotated |
||||||
|
public class TaskTagRespVO { |
||||||
|
|
||||||
|
@Schema(description = "主键", requiredMode = Schema.RequiredMode.REQUIRED, example = "29084") |
||||||
|
@ExcelProperty("主键") |
||||||
|
private Long id; |
||||||
|
|
||||||
|
@Schema(description = "企业id", example = "19196") |
||||||
|
@ExcelProperty("企业id") |
||||||
|
private Long taskId; |
||||||
|
|
||||||
|
@Schema(description = "标签id", example = "12139") |
||||||
|
@ExcelProperty("标签id") |
||||||
|
private Long tagId; |
||||||
|
|
||||||
|
@Schema(description = "创建时间", requiredMode = Schema.RequiredMode.REQUIRED) |
||||||
|
@ExcelProperty("创建时间") |
||||||
|
private LocalDateTime createTime; |
||||||
|
|
||||||
|
} |
@ -0,0 +1,20 @@ |
|||||||
|
package cn.iocoder.yudao.module.system.controller.admin.tasktag.vo; |
||||||
|
|
||||||
|
import io.swagger.v3.oas.annotations.media.Schema; |
||||||
|
import lombok.*; |
||||||
|
import java.util.*; |
||||||
|
|
||||||
|
@Schema(description = "管理后台 - 任务标签关联新增/修改 Request VO") |
||||||
|
@Data |
||||||
|
public class TaskTagSaveReqVO { |
||||||
|
|
||||||
|
@Schema(description = "主键", requiredMode = Schema.RequiredMode.REQUIRED, example = "29084") |
||||||
|
private Long id; |
||||||
|
|
||||||
|
@Schema(description = "企业id", example = "19196") |
||||||
|
private Long taskId; |
||||||
|
|
||||||
|
@Schema(description = "标签id", example = "12139") |
||||||
|
private Long tagId; |
||||||
|
|
||||||
|
} |
@ -0,0 +1,39 @@ |
|||||||
|
package cn.iocoder.yudao.module.system.dal.dataobject.tasktag; |
||||||
|
|
||||||
|
import lombok.*; |
||||||
|
import java.util.*; |
||||||
|
import java.time.LocalDateTime; |
||||||
|
import java.time.LocalDateTime; |
||||||
|
import com.baomidou.mybatisplus.annotation.*; |
||||||
|
import cn.iocoder.yudao.framework.mybatis.core.dataobject.BaseDO; |
||||||
|
|
||||||
|
/** |
||||||
|
* 任务标签关联 DO |
||||||
|
* |
||||||
|
* @author dx |
||||||
|
*/ |
||||||
|
@TableName("task_tag") |
||||||
|
@KeySequence("task_tag_seq") // 用于 Oracle、PostgreSQL、Kingbase、DB2、H2 数据库的主键自增。如果是 MySQL 等数据库,可不写。
|
||||||
|
@Data |
||||||
|
@EqualsAndHashCode(callSuper = true) |
||||||
|
@ToString(callSuper = true) |
||||||
|
@Builder |
||||||
|
@NoArgsConstructor |
||||||
|
@AllArgsConstructor |
||||||
|
public class TaskTagDO extends BaseDO { |
||||||
|
|
||||||
|
/** |
||||||
|
* 主键 |
||||||
|
*/ |
||||||
|
@TableId |
||||||
|
private Long id; |
||||||
|
/** |
||||||
|
* 企业id |
||||||
|
*/ |
||||||
|
private Long taskId; |
||||||
|
/** |
||||||
|
* 标签id |
||||||
|
*/ |
||||||
|
private Long tagId; |
||||||
|
|
||||||
|
} |
@ -0,0 +1,28 @@ |
|||||||
|
package cn.iocoder.yudao.module.system.dal.mysql.tasktag; |
||||||
|
|
||||||
|
import java.util.*; |
||||||
|
|
||||||
|
import cn.iocoder.yudao.framework.common.pojo.PageResult; |
||||||
|
import cn.iocoder.yudao.framework.mybatis.core.query.LambdaQueryWrapperX; |
||||||
|
import cn.iocoder.yudao.framework.mybatis.core.mapper.BaseMapperX; |
||||||
|
import cn.iocoder.yudao.module.system.dal.dataobject.tasktag.TaskTagDO; |
||||||
|
import org.apache.ibatis.annotations.Mapper; |
||||||
|
import cn.iocoder.yudao.module.system.controller.admin.tasktag.vo.*; |
||||||
|
|
||||||
|
/** |
||||||
|
* 任务标签关联 Mapper |
||||||
|
* |
||||||
|
* @author dx |
||||||
|
*/ |
||||||
|
@Mapper |
||||||
|
public interface TaskTagMapper extends BaseMapperX<TaskTagDO> { |
||||||
|
|
||||||
|
default PageResult<TaskTagDO> selectPage(TaskTagPageReqVO reqVO) { |
||||||
|
return selectPage(reqVO, new LambdaQueryWrapperX<TaskTagDO>() |
||||||
|
.eqIfPresent(TaskTagDO::getTaskId, reqVO.getTaskId()) |
||||||
|
.eqIfPresent(TaskTagDO::getTagId, reqVO.getTagId()) |
||||||
|
.betweenIfPresent(TaskTagDO::getCreateTime, reqVO.getCreateTime()) |
||||||
|
.orderByDesc(TaskTagDO::getId)); |
||||||
|
} |
||||||
|
|
||||||
|
} |
@ -0,0 +1,27 @@ |
|||||||
|
package cn.iocoder.yudao.module.system.job; |
||||||
|
|
||||||
|
import cn.iocoder.yudao.framework.quartz.core.handler.JobHandler; |
||||||
|
import cn.iocoder.yudao.module.system.service.taskinfo.TaskInfoService; |
||||||
|
import org.springframework.stereotype.Component; |
||||||
|
|
||||||
|
import javax.annotation.Resource; |
||||||
|
|
||||||
|
@Component |
||||||
|
public class TaskExecJob implements JobHandler { |
||||||
|
/** |
||||||
|
* 执行任务 |
||||||
|
* |
||||||
|
* @param param 参数 |
||||||
|
* @return 结果 |
||||||
|
* @throws Exception 异常 |
||||||
|
*/ |
||||||
|
@Resource |
||||||
|
private TaskInfoService taskInfoService; |
||||||
|
|
||||||
|
@Override |
||||||
|
public String execute(String param) throws Exception { |
||||||
|
final Long taskId = Long.valueOf(param); |
||||||
|
taskInfoService.sendTask(taskId); |
||||||
|
return ""; |
||||||
|
} |
||||||
|
} |
@ -0,0 +1,56 @@ |
|||||||
|
package cn.iocoder.yudao.module.system.service.tasktag; |
||||||
|
|
||||||
|
import java.util.*; |
||||||
|
import cn.iocoder.yudao.module.system.controller.admin.tasktag.vo.*; |
||||||
|
import cn.iocoder.yudao.module.system.dal.dataobject.tasktag.TaskTagDO; |
||||||
|
import cn.iocoder.yudao.framework.common.pojo.PageResult; |
||||||
|
import cn.iocoder.yudao.framework.common.pojo.PageParam; |
||||||
|
|
||||||
|
import javax.validation.Valid; |
||||||
|
|
||||||
|
/** |
||||||
|
* 任务标签关联 Service 接口 |
||||||
|
* |
||||||
|
* @author dx |
||||||
|
*/ |
||||||
|
public interface TaskTagService { |
||||||
|
|
||||||
|
/** |
||||||
|
* 创建任务标签关联 |
||||||
|
* |
||||||
|
* @param createReqVO 创建信息 |
||||||
|
* @return 编号 |
||||||
|
*/ |
||||||
|
Long createTaskTag(@Valid TaskTagSaveReqVO createReqVO); |
||||||
|
|
||||||
|
/** |
||||||
|
* 更新任务标签关联 |
||||||
|
* |
||||||
|
* @param updateReqVO 更新信息 |
||||||
|
*/ |
||||||
|
void updateTaskTag(@Valid TaskTagSaveReqVO updateReqVO); |
||||||
|
|
||||||
|
/** |
||||||
|
* 删除任务标签关联 |
||||||
|
* |
||||||
|
* @param id 编号 |
||||||
|
*/ |
||||||
|
void deleteTaskTag(Long id); |
||||||
|
|
||||||
|
/** |
||||||
|
* 获得任务标签关联 |
||||||
|
* |
||||||
|
* @param id 编号 |
||||||
|
* @return 任务标签关联 |
||||||
|
*/ |
||||||
|
TaskTagDO getTaskTag(Long id); |
||||||
|
|
||||||
|
/** |
||||||
|
* 获得任务标签关联分页 |
||||||
|
* |
||||||
|
* @param pageReqVO 分页查询 |
||||||
|
* @return 任务标签关联分页 |
||||||
|
*/ |
||||||
|
PageResult<TaskTagDO> getTaskTagPage(TaskTagPageReqVO pageReqVO); |
||||||
|
|
||||||
|
} |
@ -0,0 +1,75 @@ |
|||||||
|
package cn.iocoder.yudao.module.system.service.tasktag; |
||||||
|
|
||||||
|
import org.springframework.stereotype.Service; |
||||||
|
import org.springframework.validation.annotation.Validated; |
||||||
|
import org.springframework.transaction.annotation.Transactional; |
||||||
|
|
||||||
|
import java.util.*; |
||||||
|
import cn.iocoder.yudao.module.system.controller.admin.tasktag.vo.*; |
||||||
|
import cn.iocoder.yudao.module.system.dal.dataobject.tasktag.TaskTagDO; |
||||||
|
import cn.iocoder.yudao.framework.common.pojo.PageResult; |
||||||
|
import cn.iocoder.yudao.framework.common.pojo.PageParam; |
||||||
|
import cn.iocoder.yudao.framework.common.util.object.BeanUtils; |
||||||
|
|
||||||
|
import cn.iocoder.yudao.module.system.dal.mysql.tasktag.TaskTagMapper; |
||||||
|
|
||||||
|
import javax.annotation.Resource; |
||||||
|
|
||||||
|
import static cn.iocoder.yudao.framework.common.exception.util.ServiceExceptionUtil.exception; |
||||||
|
import static cn.iocoder.yudao.module.system.enums.ErrorCodeConstants.*; |
||||||
|
|
||||||
|
/** |
||||||
|
* 任务标签关联 Service 实现类 |
||||||
|
* |
||||||
|
* @author dx |
||||||
|
*/ |
||||||
|
@Service |
||||||
|
@Validated |
||||||
|
public class TaskTagServiceImpl implements TaskTagService { |
||||||
|
|
||||||
|
@Resource |
||||||
|
private TaskTagMapper taskTagMapper; |
||||||
|
|
||||||
|
@Override |
||||||
|
public Long createTaskTag(TaskTagSaveReqVO createReqVO) { |
||||||
|
// 插入
|
||||||
|
TaskTagDO taskTag = BeanUtils.toBean(createReqVO, TaskTagDO.class); |
||||||
|
taskTagMapper.insert(taskTag); |
||||||
|
// 返回
|
||||||
|
return taskTag.getId(); |
||||||
|
} |
||||||
|
|
||||||
|
@Override |
||||||
|
public void updateTaskTag(TaskTagSaveReqVO updateReqVO) { |
||||||
|
// 校验存在
|
||||||
|
validateTaskTagExists(updateReqVO.getId()); |
||||||
|
// 更新
|
||||||
|
TaskTagDO updateObj = BeanUtils.toBean(updateReqVO, TaskTagDO.class); |
||||||
|
taskTagMapper.updateById(updateObj); |
||||||
|
} |
||||||
|
|
||||||
|
@Override |
||||||
|
public void deleteTaskTag(Long id) { |
||||||
|
// 校验存在
|
||||||
|
validateTaskTagExists(id); |
||||||
|
// 删除
|
||||||
|
taskTagMapper.deleteById(id); |
||||||
|
} |
||||||
|
|
||||||
|
private void validateTaskTagExists(Long id) { |
||||||
|
if (taskTagMapper.selectById(id) == null) { |
||||||
|
throw exception(TASK_TAG_NOT_EXISTS); |
||||||
|
} |
||||||
|
} |
||||||
|
|
||||||
|
@Override |
||||||
|
public TaskTagDO getTaskTag(Long id) { |
||||||
|
return taskTagMapper.selectById(id); |
||||||
|
} |
||||||
|
|
||||||
|
@Override |
||||||
|
public PageResult<TaskTagDO> getTaskTagPage(TaskTagPageReqVO pageReqVO) { |
||||||
|
return taskTagMapper.selectPage(pageReqVO); |
||||||
|
} |
||||||
|
|
||||||
|
} |
Loading…
Reference in new issue