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

40 lines
1.1 KiB
Java
Raw Normal View History

2024-09-27 12:21:17 +08:00
package cn.bunny.services.mapper;
import cn.bunny.dao.dto.menuIcon.MenuIconDto;
2024-09-27 12:21:17 +08:00
import cn.bunny.dao.entity.system.MenuIcon;
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
import com.baomidou.mybatisplus.core.metadata.IPage;
import com.baomidou.mybatisplus.extension.plugins.pagination.Page;
2024-09-27 12:21:17 +08:00
import org.apache.ibatis.annotations.Mapper;
import org.apache.ibatis.annotations.Param;
2024-09-27 12:21:17 +08:00
2024-10-02 14:48:56 +08:00
import java.util.List;
2024-09-27 12:21:17 +08:00
/**
* <p>
* 系统菜单图标 Mapper 接口
* </p>
*
* @author Bunny
2024-10-02 14:48:56 +08:00
* @since 2024-10-02 12:18:29
2024-09-27 12:21:17 +08:00
*/
@Mapper
public interface MenuIconMapper extends BaseMapper<MenuIcon> {
/**
2024-10-02 14:48:56 +08:00
* * 分页查询系统菜单图标内容
*
2024-10-02 14:48:56 +08:00
* @param pageParams 系统菜单图标分页参数
* @param dto 系统菜单图标查询表单
* @return 系统菜单图标分页结果
*/
IPage<MenuIcon> selectListByPage(@Param("page") Page<MenuIcon> pageParams, @Param("dto") MenuIconDto dto);
2024-10-02 14:48:56 +08:00
/**
* 物理删除系统菜单图标
*
* @param ids 删除 id 列表
*/
void deleteBatchIdsWithPhysics(List<Long> ids);
2024-09-27 12:21:17 +08:00
}