first commit

This commit is contained in:
ouburikou
2018-02-05 18:59:21 +08:00
commit bb00973025
957 changed files with 231677 additions and 0 deletions

View File

@@ -0,0 +1,10 @@
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);
}