yantian yue
2023-10-18 69fbaaa1a5fd16b05953e750ea7fcc3e18e3a27c
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
56
57
58
59
60
61
62
63
64
65
66
67
68
package cn.stylefeng.guns.excel.service;
 
import cn.stylefeng.guns.base.pojo.page.LayuiPageInfo;
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.extension.service.IService;
 
import java.util.List;
 
/**
 * <p>
 * excel导出配置 服务类
 * </p>
 *
 * @author York
 * @since 2019-11-26
 */
public interface ExcelExportDeployService extends IService<ExcelExportDeploy> {
 
    /**
     * 新增
     *
     * @author York
     * @Date 2019-11-26
     */
    void add(ExcelExportDeployParam param);
 
    /**
     * 删除
     *
     * @author York
     * @Date 2019-11-26
     */
    void delete(ExcelExportDeployParam param);
 
    /**
     * 更新
     *
     * @author York
     * @Date 2019-11-26
     */
    void update(ExcelExportDeployParam param);
 
    /**
     * 查询单条数据
     *
     * @author York
     * @Date 2019-11-26
     */
    public ExcelExportDeploy findBySpec(ExcelExportDeploy param);
 
    /**
     * 查询列表,Specification模式
     *
     * @author York
     * @Date 2019-11-26
     */
    List<ExcelExportDeployResult> findListBySpec(ExcelExportDeployParam param);
 
    /**
     * 查询分页数据,Specification模式
     *
     * @author York
     * @Date 2019-11-26
     */
    LayuiPageInfo findPageBySpec(ExcelExportDeployParam param);
}