@opentiny/tiny-toolkit-pro
Version:
TinyPro Vue:开箱即用、前后端分离的 Vue 后台管理模板
24 lines (22 loc) • 446 B
text/typescript
import { Column, Entity, PrimaryGeneratedColumn } from 'typeorm';
('menu')
export class Menu {
()
id: number;
()
name: string;
()
order: number;
({ nullable: true })
parentId: number;
()
menuType: string;
({ nullable: true })
icon: string;
()
component: string;
()
path: string;
()
locale: string;
}