This commit is contained in:
zc
2026-02-27 10:50:07 +08:00
parent 0ee56404c2
commit 86527b9c21
611 changed files with 2741 additions and 2752 deletions

View File

@@ -1,4 +1,4 @@
package top.ysoft.admin.controller.schedule;
package top.wms.admin.controller.schedule;
import cn.hutool.core.util.StrUtil;
import com.aizuda.snailjob.client.job.core.annotation.JobExecutor;
@@ -8,11 +8,11 @@ import com.baomidou.mybatisplus.core.plugins.InterceptorIgnoreHelper;
import lombok.RequiredArgsConstructor;
import org.springframework.stereotype.Component;
import org.springframework.transaction.annotation.Transactional;
import top.ysoft.admin.common.constant.CacheConstants;
import top.ysoft.admin.open.mapper.AppMapper;
import top.ysoft.admin.open.model.entity.AppDO;
import top.ysoft.admin.system.mapper.*;
import top.ysoft.admin.system.model.entity.*;
import top.wms.admin.common.constant.CacheConstants;
import top.wms.admin.open.mapper.AppMapper;
import top.wms.admin.open.model.entity.AppDO;
import top.wms.admin.system.mapper.*;
import top.wms.admin.system.model.entity.*;
import top.continew.starter.cache.redisson.util.RedisUtils;
import top.continew.starter.core.constant.StringConstants;

View File

@@ -1,4 +1,4 @@
package top.ysoft.admin.controller.schedule;
package top.wms.admin.controller.schedule;
import cn.dev33.satoken.annotation.SaCheckPermission;
import io.swagger.v3.oas.annotations.Operation;
@@ -8,11 +8,11 @@ import io.swagger.v3.oas.annotations.tags.Tag;
import lombok.RequiredArgsConstructor;
import org.springframework.validation.annotation.Validated;
import org.springframework.web.bind.annotation.*;
import top.ysoft.admin.schedule.model.query.JobQuery;
import top.ysoft.admin.schedule.model.req.JobReq;
import top.ysoft.admin.schedule.model.req.JobStatusReq;
import top.ysoft.admin.schedule.model.resp.JobResp;
import top.ysoft.admin.schedule.service.JobService;
import top.wms.admin.schedule.model.query.JobQuery;
import top.wms.admin.schedule.model.req.JobReq;
import top.wms.admin.schedule.model.req.JobStatusReq;
import top.wms.admin.schedule.model.resp.JobResp;
import top.wms.admin.schedule.service.JobService;
import top.continew.starter.extension.crud.model.resp.PageResp;
import top.continew.starter.extension.crud.validation.CrudValidationGroup;
import top.continew.starter.log.annotation.Log;

View File

@@ -1,4 +1,4 @@
package top.ysoft.admin.controller.schedule;
package top.wms.admin.controller.schedule;
import cn.dev33.satoken.annotation.SaCheckPermission;
import io.swagger.v3.oas.annotations.Operation;
@@ -8,13 +8,13 @@ import io.swagger.v3.oas.annotations.tags.Tag;
import lombok.RequiredArgsConstructor;
import org.springframework.validation.annotation.Validated;
import org.springframework.web.bind.annotation.*;
import top.ysoft.admin.schedule.model.JobInstanceLogPageResult;
import top.ysoft.admin.schedule.model.query.JobInstanceLogQuery;
import top.ysoft.admin.schedule.model.query.JobInstanceQuery;
import top.ysoft.admin.schedule.model.query.JobLogQuery;
import top.ysoft.admin.schedule.model.resp.JobInstanceResp;
import top.ysoft.admin.schedule.model.resp.JobLogResp;
import top.ysoft.admin.schedule.service.JobLogService;
import top.wms.admin.schedule.model.JobInstanceLogPageResult;
import top.wms.admin.schedule.model.query.JobInstanceLogQuery;
import top.wms.admin.schedule.model.query.JobInstanceQuery;
import top.wms.admin.schedule.model.query.JobLogQuery;
import top.wms.admin.schedule.model.resp.JobInstanceResp;
import top.wms.admin.schedule.model.resp.JobLogResp;
import top.wms.admin.schedule.service.JobLogService;
import top.continew.starter.extension.crud.model.resp.PageResp;
import java.util.List;