|  |  |  | 
|---|
|  |  |  |  | 
|---|
|  |  |  | import com.moral.api.entity.ManageRoleMenu; | 
|---|
|  |  |  | import com.baomidou.mybatisplus.extension.service.IService; | 
|---|
|  |  |  | import org.springframework.transaction.annotation.Transactional; | 
|---|
|  |  |  |  | 
|---|
|  |  |  | import java.util.List; | 
|---|
|  |  |  | import java.util.Map; | 
|---|
|  |  |  |  | 
|---|
|  |  |  | /** | 
|---|
|  |  |  | * <p> | 
|---|
|  |  |  | 
|---|
|  |  |  | * @author moral | 
|---|
|  |  |  | * @since 2021-03-09 | 
|---|
|  |  |  | */ | 
|---|
|  |  |  | @Transactional | 
|---|
|  |  |  | public interface ManageRoleMenuService extends IService<ManageRoleMenu> { | 
|---|
|  |  |  |  | 
|---|
|  |  |  | /** | 
|---|
|  |  |  | * @Description: 更新角色菜单关联表 | 
|---|
|  |  |  | * @Param: [List,int] | 
|---|
|  |  |  | * @return: Map | 
|---|
|  |  |  | * @Author: 李子杰 | 
|---|
|  |  |  | * @Date: 2021/7/26 | 
|---|
|  |  |  | */ | 
|---|
|  |  |  | @Transactional | 
|---|
|  |  |  | Map<String,Object> updateRoleMenu(List menuList,int id); | 
|---|
|  |  |  |  | 
|---|
|  |  |  | } | 
|---|