2
0

style: 替换项目内所有ruoyi转为wfc

This commit is contained in:
TsMask
2024-11-26 17:34:02 +08:00
parent 77a28b06a3
commit fab448f836
300 changed files with 1211 additions and 1428 deletions

View File

@@ -8,7 +8,7 @@ import org.wfc.common.security.annotation.EnableRyFeignClients;
/**
* 定时任务
*
* @author ruoyi
* @author wfc
*/
@EnableCustomConfig
@EnableRyFeignClients

View File

@@ -9,7 +9,7 @@
///**
// * 定时任务配置单机部署建议删除此类和qrtz数据库表默认走内存会最高效
// *
// * @author ruoyi
// * @author wfc
// */
//@Configuration
//public class ScheduleConfig
@@ -22,7 +22,7 @@
//
// // quartz参数
// Properties prop = new Properties();
// prop.put("org.quartz.scheduler.instanceName", "RuoyiScheduler");
// prop.put("org.quartz.scheduler.instanceName", "wfcScheduler");
// prop.put("org.quartz.scheduler.instanceId", "AUTO");
// // 线程池配置
// prop.put("org.quartz.threadPool.class", "org.quartz.simpl.SimpleThreadPool");
@@ -42,7 +42,7 @@
// prop.put("org.quartz.jobStore.tablePrefix", "QRTZ_");
// factory.setQuartzProperties(prop);
//
// factory.setSchedulerName("RuoyiScheduler");
// factory.setSchedulerName("wfcScheduler");
// // 延时启动
// factory.setStartupDelay(1);
// factory.setApplicationContextSchedulerContextKey("applicationContextKey");

View File

@@ -31,7 +31,7 @@ import org.wfc.job.util.ScheduleUtils;
/**
* 调度任务信息操作处理
*
* @author ruoyi
* @author wfc
*/
@RestController
@RequestMapping("/job")

View File

@@ -22,7 +22,7 @@ import org.wfc.job.service.ISysJobLogService;
/**
* 调度日志操作处理
*
* @author ruoyi
* @author wfc
*/
@RestController
@RequestMapping("/job/log")

View File

@@ -16,7 +16,7 @@ import org.wfc.job.util.CronUtils;
/**
* 定时任务调度表 sys_job
*
* @author ruoyi
* @author wfc
*/
public class SysJob extends BaseEntity
{

View File

@@ -9,7 +9,7 @@ import org.wfc.common.core.web.domain.BaseEntity;
/**
* 定时任务调度日志表 sys_job_log
*
* @author ruoyi
* @author wfc
*/
public class SysJobLog extends BaseEntity
{

View File

@@ -6,7 +6,7 @@ import org.wfc.job.domain.SysJobLog;
/**
* 调度任务日志信息 数据层
*
* @author ruoyi
* @author wfc
*/
public interface SysJobLogMapper
{

View File

@@ -6,7 +6,7 @@ import org.wfc.job.domain.SysJob;
/**
* 调度任务信息 数据层
*
* @author ruoyi
* @author wfc
*/
public interface SysJobMapper
{

View File

@@ -6,7 +6,7 @@ import org.wfc.job.domain.SysJobLog;
/**
* 定时任务调度日志信息信息 服务层
*
* @author ruoyi
* @author wfc
*/
public interface ISysJobLogService
{

View File

@@ -8,7 +8,7 @@ import org.wfc.job.domain.SysJob;
/**
* 定时任务调度信息信息 服务层
*
* @author ruoyi
* @author wfc
*/
public interface ISysJobService
{

View File

@@ -9,7 +9,7 @@ import org.wfc.job.mapper.SysJobLogMapper;
/**
* 定时任务调度日志信息 服务层
*
* @author ruoyi
* @author wfc
*/
@Service
public class SysJobLogServiceImpl implements ISysJobLogService

View File

@@ -19,7 +19,7 @@ import org.wfc.job.util.ScheduleUtils;
/**
* 定时任务调度信息 服务层
*
* @author ruoyi
* @author wfc
*/
@Service
public class SysJobServiceImpl implements ISysJobService

View File

@@ -6,7 +6,7 @@ import org.wfc.common.core.utils.StringUtils;
/**
* 定时任务调度测试
*
* @author ruoyi
* @author wfc
*/
@Component("ryTask")
public class RyTask

View File

@@ -18,7 +18,7 @@ import org.wfc.job.service.ISysJobLogService;
/**
* 抽象quartz调用
*
* @author ruoyi
* @author wfc
*/
public abstract class AbstractQuartzJob implements Job
{

View File

@@ -7,7 +7,7 @@ import org.quartz.CronExpression;
/**
* cron表达式工具类
*
* @author ruoyi
* @author wfc
*
*/
public class CronUtils

View File

@@ -11,7 +11,7 @@ import org.wfc.job.domain.SysJob;
/**
* 任务执行工具
*
* @author ruoyi
* @author wfc
*/
public class JobInvokeUtil
{

View File

@@ -8,7 +8,7 @@ import org.wfc.job.domain.SysJob;
/**
* 定时任务处理(禁止并发执行)
*
* @author ruoyi
* @author wfc
*
*/
@DisallowConcurrentExecution

View File

@@ -7,7 +7,7 @@ import org.wfc.job.domain.SysJob;
/**
* 定时任务处理(允许并发执行)
*
* @author ruoyi
* @author wfc
*
*/
public class QuartzJobExecution extends AbstractQuartzJob

View File

@@ -21,7 +21,7 @@ import org.wfc.job.domain.SysJob;
/**
* 定时任务工具类
*
* @author ruoyi
* @author wfc
*
*/
public class ScheduleUtils