懒羊羊
2023-08-30 71e81ed1d12e4d69f53c8ad9e066650ad4186293
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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
package cn.stylefeng.guns.excel.mapper;
 
import cn.stylefeng.guns.excel.entity.ExcelExportDeploy;
import cn.stylefeng.guns.excel.model.params.ExcelExportDeployParam;
import cn.stylefeng.guns.excel.model.result.ExcelExportDeployResult;
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
import com.baomidou.mybatisplus.extension.plugins.pagination.Page;
import org.apache.ibatis.annotations.Param;
 
import java.util.List;
import java.util.Map;
 
/**
 * <p>
 * excel导出配置 Mapper 接口
 * </p>
 *
 * @author York
 * @since 2019-11-26
 */
public interface ExcelExportDeployMapper extends BaseMapper<ExcelExportDeploy> {
 
    /**
     * 获取列表
     *
     * @author York
     * @Date 2019-11-26
     */
    List<ExcelExportDeployResult> customList(@Param("paramCondition") ExcelExportDeployParam paramCondition);
 
    /**
     * 获取map列表
     *
     * @author York
     * @Date 2019-11-26
     */
    List<Map<String, Object>> customMapList(@Param("paramCondition") ExcelExportDeployParam paramCondition);
 
    /**
     * 获取分页实体列表
     *
     * @author York
     * @Date 2019-11-26
     */
    Page<ExcelExportDeployResult> customPageList(@Param("page") Page page, @Param("paramCondition") ExcelExportDeployParam paramCondition);
 
    /**
     * 获取分页map列表
     *
     * @author York
     * @Date 2019-11-26
     */
    Page<Map<String, Object>> customPageMapList(@Param("page") Page page, @Param("paramCondition") ExcelExportDeployParam paramCondition);
 
}