You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
22 lines
532 B
22 lines
532 B
10 months ago
|
package com.teaching.backend.service.umsAdmin;
|
||
|
|
||
|
import com.teaching.backend.model.entity.umsAdmin.UmsMenu;
|
||
|
import com.teaching.backend.model.entity.umsAdmin.UmsResource;
|
||
|
import com.teaching.backend.model.entity.umsAdmin.UmsRole;
|
||
|
import org.springframework.transaction.annotation.Transactional;
|
||
|
|
||
|
import java.util.List;
|
||
|
|
||
|
/**
|
||
|
* 后台角色管理Service
|
||
|
* Created by macro on 2018/9/30.
|
||
|
*/
|
||
|
public interface UmsRoleService {
|
||
|
|
||
|
/**
|
||
|
* 根据管理员ID获取对应菜单
|
||
|
*/
|
||
|
List<UmsMenu> getMenuList(Long adminId);
|
||
|
|
||
|
}
|