1234567891011121314 |
- import { BaseEntity } from '@cool-midway/core';
- import { Column, Entity } from 'typeorm';
- /**
- * 角色图集
- */
- @Entity('base_sys_role_atlas')
- export class BaseSysRoleAtlasEntity extends BaseEntity {
- @Column({ comment: '角色ID', type: 'int' })
- roleId: number;
- @Column({ comment: '图集ID' })
- atlasId: string;
- }
|