RoleAuthService.java 255 Bytes Edit Raw Blame History 1 2 3 4 5 6 7 8 9 10 11 12 package com.itheima.gateway.service; import com.itheima.authority.api.v1.dto.RoleResourceDTO; import java.util.List; public interface RoleAuthService { List<RoleResourceDTO> findAllRoles(); List<Long> findRoleByUserId(Long id); }