完善类型

This commit is contained in:
cool 2024-04-30 13:08:15 +08:00
parent ec5680fee1
commit 3b131a5c7c

View File

@ -36,9 +36,12 @@ export class BaseSysMenuEntity extends BaseEntity {
@Column({ comment: '路由缓存', default: true })
keepAlive: boolean;
@Column({ comment: '是否显示', default: true })
isShow: boolean;
// 父菜单名称
parentName: string;
@Column({ comment: '是否显示', default: true })
isShow: boolean;
// 子菜单
childMenus: any;
}