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<String> addMenu(ContextCacheUser currentUser, MenuAddRPCReqDTO menuAddRPCReqDTO);
|
|
/**
|
* @Description: 修改菜单
|
*/
|
ResultVO<String> modMenu(ContextCacheUser currentUser, MenuModRPCReqDTO menuModRPCReqDTO);
|
|
|
/**
|
* @Description: 删除菜单
|
*/
|
ResultVO<String> delMenu(ContextCacheUser currentUser, Long menuId);
|
|
|
}
|