1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
| package com.highdatas.mdm.mapper;
|
| import com.baomidou.mybatisplus.mapper.BaseMapper;
| import com.highdatas.mdm.entity.MasterAuthor;
|
| import java.util.List;
| import java.util.Map;
|
| /**
| * <p>
| * Mapper 接口
| * </p>
| *
| * @author kimi
| * @since 2020-03-23
| */
| public interface MasterAuthorMapper extends BaseMapper<MasterAuthor> {
|
| List<Map<String, Object>> selectAuthorUserCnt();
| List<Map<String, Object>> selectAuthorRoleCnt();
|
| List<Map<String, Object>> selectViewCnt();
| }
|
|