yantian yue
2023-10-18 69fbaaa1a5fd16b05953e750ea7fcc3e18e3a27c
提交 | 用户 | 时间
1ac2bc 1 package cn.stylefeng.guns.excel.mapper;
2
3 import cn.stylefeng.guns.excel.entity.ExcelExportDeploy;
4 import cn.stylefeng.guns.excel.model.params.ExcelExportDeployParam;
5 import cn.stylefeng.guns.excel.model.result.ExcelExportDeployResult;
6 import com.baomidou.mybatisplus.core.mapper.BaseMapper;
7 import com.baomidou.mybatisplus.extension.plugins.pagination.Page;
8 import org.apache.ibatis.annotations.Param;
9
10 import java.util.List;
11 import java.util.Map;
12
13 /**
14  * <p>
15  * excel导出配置 Mapper 接口
16  * </p>
17  *
18  * @author York
19  * @since 2019-11-26
20  */
21 public interface ExcelExportDeployMapper extends BaseMapper<ExcelExportDeploy> {
22
23     /**
24      * 获取列表
25      *
26      * @author York
27      * @Date 2019-11-26
28      */
29     List<ExcelExportDeployResult> customList(@Param("paramCondition") ExcelExportDeployParam paramCondition);
30
31     /**
32      * 获取map列表
33      *
34      * @author York
35      * @Date 2019-11-26
36      */
37     List<Map<String, Object>> customMapList(@Param("paramCondition") ExcelExportDeployParam paramCondition);
38
39     /**
40      * 获取分页实体列表
41      *
42      * @author York
43      * @Date 2019-11-26
44      */
45     Page<ExcelExportDeployResult> customPageList(@Param("page") Page page, @Param("paramCondition") ExcelExportDeployParam paramCondition);
46
47     /**
48      * 获取分页map列表
49      *
50      * @author York
51      * @Date 2019-11-26
52      */
53     Page<Map<String, Object>> customPageMapList(@Param("page") Page page, @Param("paramCondition") ExcelExportDeployParam paramCondition);
54
55 }