wangzhibo
2026-07-16 bac4362a0b7726d38a23d38f0d7913f2c2bab262
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
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[];
}