mirror of
https://github.com/cool-team-official/cool-admin-midway.git
synced 2025-12-10 16:12:50 +00:00
32 lines
833 B
TypeScript
32 lines
833 B
TypeScript
import { BaseEntity, transformerJson } from '../base';
|
|
import { Column, Index, Entity } from 'typeorm';
|
|
|
|
/**
|
|
* 角色
|
|
*/
|
|
@Entity('base_sys_role')
|
|
export class BaseSysRoleEntity extends BaseEntity {
|
|
@Column({ comment: '用户ID' })
|
|
userId: string;
|
|
|
|
@Index({ unique: true })
|
|
@Column({ comment: '名称' })
|
|
name: string;
|
|
|
|
@Index({ unique: true })
|
|
@Column({ comment: '角色标签', nullable: true, length: 50 })
|
|
label: string;
|
|
|
|
@Column({ comment: '备注', nullable: true })
|
|
remark: string;
|
|
|
|
@Column({ comment: '数据权限是否关联上下级', default: false })
|
|
relevance: boolean;
|
|
|
|
@Column({ comment: '菜单权限', type: 'json', transformer: transformerJson })
|
|
menuIdList: number[];
|
|
|
|
@Column({ comment: '部门权限', type: 'json', transformer: transformerJson })
|
|
departmentIdList: number[];
|
|
}
|