月球大数据地理空间分析展示平台-【后端】-月球后台服务
1
13693261870
2024-11-13 024e90554d19c2342f27a26f91bbea378f84da82
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
package com.moon.server.mapper.all;
 
import com.moon.server.entity.all.MenusAuthEntity;
import com.moon.server.entity.all.PermsAuthEntity;
import com.moon.server.entity.sys.MenuEntity;
import com.moon.server.entity.sys.ResEntity;
import org.apache.ibatis.annotations.Mapper;
import org.springframework.stereotype.Repository;
 
import java.util.List;
 
@Mapper
@Repository
@SuppressWarnings("ALL")
public interface PermsMapper {
    public List<ResEntity> selectRes(String uid);
 
    public List<ResEntity> selectAllRes();
 
    public List<String> selectTabs(String uid);
 
    public List<String> selectAllTabs();
 
    public List<MenusAuthEntity> selectMenus(String uid);
 
    public List<String> selectPerms(String uid);
 
    public List<PermsAuthEntity> selectPermsEntity(String uid);
 
    public List<Integer> selectRoles(String uid);
 
    public List<MenuEntity> selectMenuRecursive(int id, String uid);
}