New file |
| | |
| | | package com.ruoyi.system.service; |
| | | |
| | | import com.baomidou.mybatisplus.extension.service.IService; |
| | | import com.ruoyi.common.basic.PageInfo; |
| | | import com.ruoyi.system.model.TBanner; |
| | | import com.ruoyi.system.query.TBannerQuery; |
| | | |
| | | import java.util.List; |
| | | |
| | | /** |
| | | * <p> |
| | | * 轮播图管理 服务类 |
| | | * </p> |
| | | * |
| | | * @author xiaochen |
| | | * @since 2025-02-07 |
| | | */ |
| | | public interface TBannerService extends IService<TBanner> { |
| | | |
| | | /** |
| | | * 获取轮播图分页列表 |
| | | * @param query |
| | | * @return |
| | | */ |
| | | PageInfo<TBanner> pageList(TBannerQuery query); |
| | | List<TBanner> list(TBannerQuery query); |
| | | } |