feat: 新增菜单管理页面

This commit is contained in:
xlsea
2024-09-03 12:19:57 +08:00
parent 89f5e8577e
commit 8ab7ee2268
130 changed files with 1797 additions and 103 deletions

View File

@ -22,4 +22,7 @@ declare namespace CommonType {
type RecordNullable<T> = {
[K in keyof T]?: T[K] | null;
};
/** The id type */
type IdType = string | number;
}