| | |
| | | package cn.gistack.sm.xxljob.mapper; |
| | | |
| | | import cn.gistack.sm.xxljob.entity.XxlJobInfo; |
| | | import cn.gistack.sm.xxljob.entity.XxlJobInfoType; |
| | | import cn.gistack.sm.xxljob.vo.XxlJobInfoVO; |
| | | import com.baomidou.mybatisplus.core.mapper.BaseMapper; |
| | | import com.baomidou.mybatisplus.core.metadata.IPage; |
| | | import org.apache.ibatis.annotations.Param; |
| | | |
| | | import java.util.List; |
| | | |
| | | /** |
| | | * @PROJECT_NAME: skjcmanager |
| | |
| | | public interface XxlJobInfoMapper extends BaseMapper<XxlJobInfo> { |
| | | |
| | | |
| | | /** |
| | | * 自定义分页查询定时任务列表信息 |
| | | * @param xxlJobInfo |
| | | * @param page |
| | | * @return |
| | | */ |
| | | List<XxlJobInfoVO> selectXxlJobPage(IPage<XxlJobInfoVO> page,@Param("xxlJobInfo") XxlJobInfoVO xxlJobInfo); |
| | | |
| | | /** |
| | | * 新增 xxlJobInfoType 信息 |
| | | * @param xxlJobInfoType |
| | | * @return |
| | | */ |
| | | Integer insertXxlJobInfoType(@Param("xxlJobInfoType")XxlJobInfoType xxlJobInfoType); |
| | | } |