heheng
10 天以前 bd605ac1e79b73db3b501f323d6f4a10c0f27dd5
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
package com.gkhy.exam.system.mapper;
 
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
import com.gkhy.exam.system.domain.SysCarousel;
import org.apache.ibatis.annotations.Mapper;
 
import java.util.List;
 
/**
 * <p>
 * 轮播图表 Mapper 接口
 * </p>
 *
 * @author kzy
 * @since 2024-06-05 11:15:14
 */
@Mapper
public interface SysCarouselMapper extends BaseMapper<SysCarousel> {
 
    /**
     * 查询轮播图列表
     *
     * @param carousel 轮播图信息
     * @return 轮播图集合
     */
    List<SysCarousel> selectCarouselList(SysCarousel carousel);
 
 
    /**
     * 查询轮播图信息
     *
     * @param carouselId 轮播图ID
     * @return 论信息
     */
    SysCarousel selectCarouselById(Long carouselId);
 
 
}