mirror of
https://gitee.com/bootx/dax-pay-ui.git
synced 2025-10-15 06:39:02 +00:00
21 lines
357 B
TypeScript
21 lines
357 B
TypeScript
/**
|
|
* 权限菜单
|
|
*/
|
|
export interface PermMenu {
|
|
parentId: number | null
|
|
title: string
|
|
name: string
|
|
effect: boolean
|
|
icon: string
|
|
hidden: boolean
|
|
hideChildrenInMenu: boolean
|
|
component: string
|
|
path: string
|
|
iframeUrl: string
|
|
redirect: string
|
|
sortNo: number
|
|
keepAlive: boolean
|
|
targetOutside: boolean
|
|
children: Array<PermMenu>
|
|
}
|