2024-10-14 20:54:54 +08:00
|
|
|
package cn.bunny.services.mapper;
|
|
|
|
|
2024-10-14 21:18:14 +08:00
|
|
|
import cn.bunny.dao.dto.schedulers.SchedulersDto;
|
2024-10-15 15:23:59 +08:00
|
|
|
import cn.bunny.dao.entity.schedulers.ViewSchedulers;
|
2024-10-14 20:54:54 +08:00
|
|
|
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
|
2024-10-14 21:18:14 +08:00
|
|
|
import com.baomidou.mybatisplus.core.metadata.IPage;
|
|
|
|
import com.baomidou.mybatisplus.extension.plugins.pagination.Page;
|
2024-10-14 20:54:54 +08:00
|
|
|
import org.apache.ibatis.annotations.Mapper;
|
2024-10-14 21:18:14 +08:00
|
|
|
import org.apache.ibatis.annotations.Param;
|
|
|
|
|
|
|
|
import java.util.List;
|
2024-10-14 20:54:54 +08:00
|
|
|
|
|
|
|
/**
|
|
|
|
* <p>
|
2024-10-14 21:18:14 +08:00
|
|
|
* Schedulers视图 Mapper 接口
|
2024-10-14 20:54:54 +08:00
|
|
|
* </p>
|
|
|
|
*
|
|
|
|
* @author Bunny
|
2024-10-14 21:18:14 +08:00
|
|
|
* @since 2024-10-14 20:59:25
|
2024-10-14 20:54:54 +08:00
|
|
|
*/
|
|
|
|
@Mapper
|
2024-10-15 15:23:59 +08:00
|
|
|
public interface SchedulersMapper extends BaseMapper<ViewSchedulers> {
|
2024-10-14 20:54:54 +08:00
|
|
|
|
2024-10-14 21:18:14 +08:00
|
|
|
/**
|
|
|
|
* * 分页查询Schedulers视图内容
|
|
|
|
*
|
|
|
|
* @param pageParams Schedulers视图分页参数
|
|
|
|
* @param dto Schedulers视图查询表单
|
|
|
|
* @return Schedulers视图分页结果
|
|
|
|
*/
|
2024-10-15 15:23:59 +08:00
|
|
|
IPage<ViewSchedulers> selectListByPage(@Param("page") Page<ViewSchedulers> pageParams, @Param("dto") SchedulersDto dto);
|
2024-10-14 21:18:14 +08:00
|
|
|
|
|
|
|
/**
|
|
|
|
* 物理删除Schedulers视图
|
|
|
|
*
|
|
|
|
* @param ids 删除 id 列表
|
|
|
|
*/
|
|
|
|
void deleteBatchIdsWithPhysics(List<Long> ids);
|
2024-10-14 20:54:54 +08:00
|
|
|
}
|