permissionsMenu
This commit is contained in:
parent
cc36f52e55
commit
007df38109
4 changed files with 204 additions and 73 deletions
21
src/interface/response/main.ts
Normal file
21
src/interface/response/main.ts
Normal file
|
|
@ -0,0 +1,21 @@
|
|||
interface ListMenu {
|
||||
id: string;
|
||||
icon: string;
|
||||
order: number;
|
||||
parentId?: string | null;
|
||||
path: string;
|
||||
sysDescription: string;
|
||||
sysName: string;
|
||||
children?: ListMenu[];
|
||||
}
|
||||
|
||||
interface ChildConfig {
|
||||
sysName?: string;
|
||||
path: string;
|
||||
}
|
||||
|
||||
interface ChildLevelTree {
|
||||
[key: string]: ChildConfig[];
|
||||
}
|
||||
|
||||
export type { ListMenu, ChildLevelTree, ChildConfig };
|
||||
Loading…
Add table
Add a link
Reference in a new issue