Files
dax-pay-ui/src/api/sys/model/menuModel.ts
2024-07-08 19:13:14 +08:00

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>
}