1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
| package com.vci.ubcs.system.mapper;
|
| import com.baomidou.mybatisplus.core.mapper.BaseMapper;
| import com.vci.ubcs.system.entity.ClassifyAuth;
| import org.apache.ibatis.annotations.Param;
|
| import java.util.List;
|
| /**
| * 分类授权,数据授权
| * @author ludc
| * @date 2023/12/25 15:50
| */
| public interface ClassifyAuthMapper extends BaseMapper<ClassifyAuth> {
|
| List<ClassifyAuth> getClassifyAuthList(@Param("classifyId") String classifyId);
|
| List<String> getViewClassByRoleIds(@Param("roleIds") List<String> roleIds,@Param("authType") String authType,@Param("menuCode") String menuCode);
|
| }
|
|