user.entity.ts 692 B

1234567891011121314151617
  1. import { BaseModel } from '../../frame/BaseModel';
  2. import { Column, Entity } from 'typeorm';
  3. @Entity('user', { comment: '用户表' })
  4. export class User extends BaseModel {
  5. @Column({ type: 'varchar', nullable: true, comment: '用户昵称' })
  6. nick_name: string;
  7. @Column({ type: 'varchar', comment: '账号', unique: true })
  8. account: string;
  9. @Column({ type: 'varchar', select: false, comment: '密码' })
  10. password: string;
  11. @Column({ type: 'varchar', comment: '电话' })
  12. tel: string;
  13. @Column({ type: 'json', nullable: true, comment: '角色id数组' })
  14. role: any;
  15. @Column({ type: 'varchar', default: '0', comment: '是否使用: 0:使用;1:禁用' })
  16. is_use: string;
  17. }