| | |
| | | @Repository |
| | | public interface RoleManageMapper extends BaseMapper<RoleInfo> { |
| | | |
| | | int updateRoleMenuStateByRoleId(Long id); |
| | | |
| | | int insertBatchRoleMenu(@Param("roleMenuAddList") List<RoleMenu> roleMenuList); |
| | | |
| | | int insertRole(RoleInfo roleInfo); |
| | |
| | | |
| | | int deleteRoleMenuByRoleId(Long id); |
| | | |
| | | List<RoleMenu>getRoleMenuByRoleId(@Param("roleId")Long roleId); |
| | | |
| | | RoleAndMenuDto selectAllRoleAndMenuByRoleId(Long roleId); |
| | | |
| | | List<Map<String, Object>> getUserListRole(); |
| | | |
| | | Map<String, Object>selctInterFaceType(String url); |
| | | |
| | | Map<String, Long> hasUrl(String type, String menuId, String roleId); |
| | | |
| | | List<Map<String, String>>getAllInterfaces(); |
| | | |
| | | int insertInterfaceList(@Param("interfaceList") List<Map<String, String>>interfaceList); |
| | | } |