| | |
| | | package com.ruoyi.project.monitor.service.impl;
|
| | |
|
| | | import java.util.List;
|
| | | import org.springframework.beans.factory.annotation.Autowired;
|
| | | import org.springframework.stereotype.Service;
|
| | | import com.ruoyi.project.monitor.domain.SysJobLog;
|
| | | import com.ruoyi.project.monitor.mapper.SysJobLogMapper;
|
| | | import com.ruoyi.project.monitor.service.ISysJobLogService;
|
| | | import lombok.RequiredArgsConstructor;
|
| | | import org.springframework.stereotype.Service;
|
| | |
|
| | | import java.util.List;
|
| | |
|
| | | /**
|
| | | * 定时任务调度日志信息 服务层
|
| | |
| | | * @author ruoyi
|
| | | */
|
| | | @Service
|
| | | @RequiredArgsConstructor
|
| | | public class SysJobLogServiceImpl implements ISysJobLogService
|
| | | {
|
| | | @Autowired
|
| | | private SysJobLogMapper jobLogMapper;
|
| | | private final SysJobLogMapper jobLogMapper;
|
| | |
|
| | | /**
|
| | | * 获取quartz调度器日志的计划任务
|