role_atlas.ts 326 B

1234567891011121314
  1. import { BaseEntity } from '@cool-midway/core';
  2. import { Column, Entity } from 'typeorm';
  3. /**
  4. * 角色图集
  5. */
  6. @Entity('base_sys_role_atlas')
  7. export class BaseSysRoleAtlasEntity extends BaseEntity {
  8. @Column({ comment: '角色ID', type: 'int' })
  9. roleId: number;
  10. @Column({ comment: '图集ID' })
  11. atlasId: string;
  12. }