kimi
2020-05-18 c8aee7b9bfd79cfd741d7e5692520f4f51a31a86
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();
}