refactor: 调整 starter 内的 BaseResp、BaseDetailResp 到 admin 项目

This commit is contained in:
2024-12-27 20:48:38 +08:00
parent 438615f87c
commit 144251b21e
53 changed files with 220 additions and 95 deletions

View File

@@ -18,10 +18,10 @@ package top.continew.admin.schedule.model;
import io.swagger.v3.oas.annotations.media.Schema;
import lombok.Data;
import java.util.List;
import java.io.Serial;
import java.io.Serializable;
import java.util.List;
/**
* 任务实例日志分页信息

View File

@@ -18,10 +18,10 @@ package top.continew.admin.schedule.service;
import top.continew.admin.schedule.model.JobInstanceLogPageResult;
import top.continew.admin.schedule.model.query.JobInstanceLogQuery;
import top.continew.admin.schedule.model.query.JobLogQuery;
import top.continew.admin.schedule.model.query.JobInstanceQuery;
import top.continew.admin.schedule.model.resp.JobLogResp;
import top.continew.admin.schedule.model.query.JobLogQuery;
import top.continew.admin.schedule.model.resp.JobInstanceResp;
import top.continew.admin.schedule.model.resp.JobLogResp;
import top.continew.starter.extension.crud.model.resp.PageResp;
import java.util.List;

View File

@@ -85,7 +85,7 @@ public interface JobService {
/**
* 查询分组列表
*
*
* @return 分组列表
*/
List<String> listGroup();