| | |
| | | package com.ruoyi.system.mapper.sys; |
| | | |
| | | import java.util.List; |
| | | import org.apache.ibatis.annotations.Param; |
| | | import com.ruoyi.system.domain.pojo.sys.SysMenu; |
| | | import org.apache.ibatis.annotations.Param; |
| | | |
| | | import java.util.List; |
| | | |
| | | /** |
| | | * 菜单表 数据层 |
| | | * |
| | | * @author ruoyi |
| | | * @author jqs |
| | | */ |
| | | public interface SysMenuMapper |
| | | { |
| | |
| | | public List<Long> selectMenuListByRoleId(@Param("roleId") Long roleId, @Param("menuCheckStrictly") boolean menuCheckStrictly); |
| | | |
| | | /** |
| | | * @description selectMenuListByDeptId |
| | | * @param deptId |
| | | * @return List<SysMenu> |
| | | * @author jqs34 |
| | | * @date 2023/6/18 19:13 |
| | | */ |
| | | public List<Long> selectMenuListByDeptId(@Param("deptId") Long deptId, @Param("menuCheckStrictly") boolean menuCheckStrictly); |
| | | |
| | | /** |
| | | * @description selectMenuListByDeptUserId |
| | | * @param deptUserId |
| | | * @return List<SysMenu> |
| | | * @author jqs34 |
| | | * @date 2023/6/18 19:13 |
| | | */ |
| | | public List<Long> selectMenuListByDeptUserId(@Param("deptUserId") Long deptUserId, @Param("menuCheckStrictly") boolean menuCheckStrictly); |
| | | |
| | | /** |
| | | * 根据菜单ID查询信息 |
| | | * |
| | | * @param menuId 菜单ID |