role.entity.ts 601 B

123456789101112131415
  1. import { BaseModel } from '../../frame/BaseModel';
  2. import { Column, Entity } from 'typeorm';
  3. @Entity('role', { comment: '角色表' })
  4. export class Role extends BaseModel {
  5. @Column({ type: 'varchar', nullable: true, comment: '角色名称' })
  6. name: string;
  7. @Column({ type: 'varchar', comment: '角色编码' })
  8. code: string;
  9. @Column({ type: 'json', nullable: true, comment: '权限' })
  10. menu: any;
  11. @Column({ type: 'varchar', nullable: true, comment: '简介' })
  12. brief: string;
  13. @Column({ type: 'varchar', default: '0', comment: '是否使用: 0:使用;1:禁用' })
  14. is_use: string;
  15. }