package com.gkhy.safePlatform.account.service;
|
|
import com.gkhy.safePlatform.account.model.dto.req.MenuAddReqDTO;
|
import com.gkhy.safePlatform.account.model.dto.req.MenuModReqDTO;
|
import com.gkhy.safePlatform.commons.co.ContextCacheUser;
|
|
public interface MenuService {
|
|
/**
|
* @Description: 新增菜单
|
*/
|
void addMenu(MenuAddReqDTO menuAddDto, ContextCacheUser currentUser);
|
|
/**
|
* @Description: 修改菜单
|
*/
|
void modMenu(MenuModReqDTO menuAddDto, ContextCacheUser currentUser);
|
|
/**
|
* @Description: 删除菜单
|
*/
|
void delMenu(Long id,ContextCacheUser currentUser);
|
}
|