1 package gboat2.web.service; 2 3 import gboat2.web.model.AuthorityResourceVO; 4 5 public interface IShortcutService { 6 7 /** 8 * 取得角色的权限树[用的了缓存] 9 * @author haogw 10 * @param authForId 角色ID 11 * @param systemId 系统ID 12 * @return 角色权限树 13 */ 14 AuthorityResourceVO findResourceTreeForRoleOfGroup(String authForId, String systemId); 15 }