package com.gkhy.safePlatform.account.rpc.apimodel; import com.gkhy.safePlatform.account.rpc.apimodel.model.req.MenuAddRPCReqDTO; import com.gkhy.safePlatform.account.rpc.apimodel.model.resp.MenuModRPCReqDTO; import com.gkhy.safePlatform.commons.co.ContextCacheUser; import com.gkhy.safePlatform.commons.vo.ResultVO; public interface AccountMenuService { /** * @Description: 新增菜单 */ ResultVO addMenu(ContextCacheUser currentUser, MenuAddRPCReqDTO menuAddRPCReqDTO); /** * @Description: 修改菜单 */ ResultVO modMenu(ContextCacheUser currentUser, MenuModRPCReqDTO menuModRPCReqDTO); /** * @Description: 删除菜单 */ ResultVO delMenu(ContextCacheUser currentUser, Long menuId); }