Files
shiro-freemaker-springboot-…/demo-shiro-interface/src/main/java/com/xinwei/shirofunction/RoleService.java
2018-02-05 18:59:21 +08:00

11 lines
331 B
Java

package com.xinwei.shirofunction;
import com.xinwei.common.page.Pagination;
import com.xinwei.common.page.PaginationResult;
import com.xinwei.service.EntityService;
public interface RoleService extends EntityService<ShiroRole, Long>{
public PaginationResult<ShiroRole> findAllByPage(Pagination<ShiroRole> pagination);
}