SysRoleService.java 577 Bytes
package com.server.shiro.persistent.service;

import com.server.shiro.persistent.bean.SysMenu;
import com.server.shiro.persistent.bean.SysMenuQuery;
import com.server.shiro.persistent.bean.SysRole;
import com.server.shiro.persistent.bean.SysRoleQuery;
import org.springframework.data.domain.Page;
import org.springframework.data.domain.Pageable;

public interface SysRoleService {
    //角色分页
    Page<SysRole> findSysRolePage(Pageable pageable, SysRoleQuery roleQuery);
    //菜单分页
    Page<SysMenu> findSysMenuPage(Pageable pageable, SysMenuQuery menuQuery);
}