feat: 代码生成添加菜单路由生成

This commit is contained in:
ray
2024-08-01 07:53:02 +08:00
parent 06fcb7f01b
commit 67ceb660cb
6 changed files with 58 additions and 11 deletions

View File

@@ -63,4 +63,12 @@ public interface SysMenuService extends IService<SysMenu> {
* @param id 菜单ID
*/
boolean deleteMenu(Long id);
/**
* 为代码生成添加菜单
*
* @param parentMenuId 父菜单ID
* @param entityName 实体名
*/
void addMenuForCodeGeneration(Long parentMenuId,String businessName, String entityName);
}