huliguo
2025-06-04 7e9508a252df668c3f7472be02595c79b21be11a
1
2
3
4
5
6
7
8
9
10
11
12
13
package com.ruoyi.system.mapper;
 
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
import com.baomidou.mybatisplus.core.metadata.IPage;
import com.ruoyi.system.domain.Banner;
import com.ruoyi.system.pojo.vo.BannerPageVO;
import org.apache.ibatis.annotations.Mapper;
import org.apache.ibatis.annotations.Param;
 
@Mapper
public interface BannerMapper extends BaseMapper<Banner> {
    IPage<BannerPageVO> getBannerPage(@Param("page") IPage<BannerPageVO> page, @Param("name")String name);
}