懒羊羊
2023-08-30 1ac2bc1590406d9babec036e154d8d08f34a6aa1
提交 | 用户 | 时间
1ac2bc 1 package cn.stylefeng.guns.workflow.modular.mapper;
2
3 import cn.stylefeng.guns.workflow.modular.entity.Myleave;
4 import cn.stylefeng.guns.workflow.modular.model.params.MyLeaveParam;
5 import cn.stylefeng.guns.workflow.modular.model.result.MyleaveResult;
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  *  Mapper 接口
16  * </p>
17  *
18  * @author fengshuonan
19  * @since 2019-08-20
20  */
21 public interface MyleaveMapper extends BaseMapper<Myleave> {
22
23     /**
24      * 获取列表
25      *
26      * @author fengshuonan
27      * @Date 2019-08-20
28      */
29     List<MyleaveResult> customList(@Param("paramCondition") MyLeaveParam paramCondition);
30
31     /**
32      * 获取map列表
33      *
34      * @author fengshuonan
35      * @Date 2019-08-20
36      */
37     List<Map<String, Object>> customMapList(@Param("paramCondition") MyLeaveParam paramCondition);
38
39     /**
40      * 获取分页实体列表
41      *
42      * @author fengshuonan
43      * @Date 2019-08-20
44      */
45     Page<MyleaveResult> customPageList(@Param("page") Page page, @Param("paramCondition") MyLeaveParam paramCondition);
46
47     /**
48      * 获取分页map列表
49      *
50      * @author fengshuonan
51      * @Date 2019-08-20
52      */
53     Page<Map<String, Object>> datalistPage(@Param("page") Page page, @Param("pd") MyLeaveParam paramCondition);
54
55     /**
56      * 获取请假类型
57      *
58      * @author fengshuonan
59      * @Date 2019-08-20
60      */
61     List<Map<String,Object>> getLeaves();
62 }