SysRuleService.java
619 Bytes
package com.server.shiro.persistent.service;
import com.server.shiro.persistent.bean.SysPermission;
import com.server.shiro.persistent.bean.SysPermissionQuery;
import com.server.shiro.persistent.bean.SysRule;
import com.server.shiro.persistent.bean.SysRuleQuery;
import org.springframework.data.domain.Page;
import org.springframework.data.domain.Pageable;
/**
* Created by dell on 2018/3/13.
*/
public interface SysRuleService {
Page<SysRule> findSysRulePage(Pageable pageable, SysRuleQuery ruleQuery);
Page<SysPermission> findSysPermissionPage(Pageable pageable, SysPermissionQuery permissionQuery);
}