long
2023-09-02 e379948bb83ebcc9ce0c467a7b970f74bc00e9a1
提交 | 用户 | 时间
71e81e 1 package cn.stylefeng.guns.modular.bs.customInfo.mapper;
2
3 import cn.stylefeng.guns.modular.bs.customInfo.entity.CustomInfo;
4 import cn.stylefeng.guns.modular.bs.customInfo.model.params.CustomInfoParam;
5 import cn.stylefeng.guns.modular.bs.customInfo.model.result.CustomInfoResult;
6 import com.baomidou.mybatisplus.core.mapper.BaseMapper;
7 import com.baomidou.mybatisplus.core.metadata.IPage;
8 import com.baomidou.mybatisplus.extension.plugins.pagination.Page;
9 import org.apache.ibatis.annotations.Param;
10
11 import java.util.List;
12 import java.util.Map;
13
14 /**
15  * <p>
16  * 客户信息 Mapper 接口
17  * </p>
18  *
19  * @author ruimin
20  * @since 2023-03-27
21  */
22 public interface CustomInfoMapper extends BaseMapper<CustomInfo> {
23
24     /**
25      * 获取列表
26      *
27      * @author ruimin
28      * @Date 2023-03-27
29      */
30     List<CustomInfoResult> customList(@Param("paramCondition") CustomInfoParam paramCondition);
31
32     /**
33      * 获取map列表
34      *
35      * @author ruimin
36      * @Date 2023-03-27
37      */
38     List<Map<String, Object>> customMapList(@Param("paramCondition") CustomInfoParam paramCondition);
39
40     /**
41      * 获取分页实体列表
42      *
43      * @author ruimin
44      * @Date 2023-03-27
45      */
46     Page<CustomInfoResult> customPageList(@Param("page") Page page, @Param("paramCondition") CustomInfoParam paramCondition);
47
48     /**
49      * 获取分页map列表
50      *
51      * @author ruimin
52      * @Date 2023-03-27
53      */
54     Page<Map<String, Object>> customPageMapList(@Param("page") Page page, @Param("paramCondition") CustomInfoParam paramCondition);
55
56 }