添加菜单接口.

This commit is contained in:
lijiahang
2023-07-18 19:08:55 +08:00
parent 7ad2fd54c5
commit 8a5888e81e
18 changed files with 352 additions and 240 deletions

View File

@@ -29,4 +29,6 @@ public class Const implements com.orion.lang.constant.Const {
public static final String INTRANET_IP = "内网IP";
public static final Long ROOT_MENU_ID = 0L;
}

View File

@@ -27,7 +27,11 @@ public interface ErrorMessage {
String USERNAME_PRESENT = "用户名已存在";
String ROLE_ABSENT = "角色存在";
String ROLE_ABSENT = "角色存在";
String PARENT_MENU_ABSENT = "父菜单不存在";
String PARENT_MENU_MUST_PARENT = "上级菜单必须为父菜单";
String DATA_ABSENT = "数据不存在";