You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
24 lines
433 B
24 lines
433 B
// 引入基础包 |
|
import { Page, R } from '/@/api/model/baseModel'; |
|
|
|
// 查询参数 |
|
export type MenuDto = Page & Menu; |
|
|
|
// 菜单对象 |
|
export interface Menu { |
|
id: string; |
|
name: string; |
|
parentId: string; |
|
type: string; |
|
path: string; |
|
component: string; |
|
permission: string; |
|
icon: string; |
|
keepAlive: string; |
|
hideMenu: string; |
|
sort: string; |
|
[key: string]: any; |
|
} |
|
|
|
// 响应模型 |
|
export type MenuVo = R<Menu[]>;
|
|
|