auth-server-java/service/src/main/java/cn/bunny/services/mapper/SchedulersMapper.java

40 lines
1.1 KiB
Java
Raw Normal View History

2024-10-14 20:54:54 +08:00
package cn.bunny.services.mapper;
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;
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;
import org.apache.ibatis.annotations.Param;
import java.util.List;
2024-10-14 20:54:54 +08:00
/**
* <p>
* Schedulers视图 Mapper 接口
2024-10-14 20:54:54 +08:00
* </p>
*
* @author Bunny
* @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
/**
* * 分页查询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);
/**
* 物理删除Schedulers视图
*
* @param ids 删除 id 列表
*/
void deleteBatchIdsWithPhysics(List<Long> ids);
2024-10-14 20:54:54 +08:00
}