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 { List getClassifyAuthList(@Param("classifyId") String classifyId); List getViewClassByRoleIds(@Param("roleIds") List roleIds,@Param("authType") String authType,@Param("buttonCode") String buttonCode,@Param("menuCode") String menuCode); }