1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
| package com.ruoyi.promotion.service;
|
| import com.baomidou.mybatisplus.extension.service.IService;
| import com.ruoyi.promotion.domain.PromotionBanner;
| import java.util.List;
|
| /**
| * <p>
| * 轮播图表 服务类
| * </p>
| *
| * @author mitao
| * @since 2024-05-16
| */
| public interface IPromotionBannerService extends IService<PromotionBanner> {
|
| List<PromotionBanner> getBaanerList(Integer bannerType);
|
| }
|
|