import { IncrementIdEntity } from 'src/common/entities/increment-id.entity'; import { Column, Entity, PrimaryGeneratedColumn } from 'typeorm'; /** * 在线教学课件 */ @Entity() export class LiveClassify { @PrimaryGeneratedColumn('increment') id: number; @Column({ comment: '父级ID' }) pid: number; @Column({ comment: '分类名称', type: 'text' }) name: string; @Column({ comment: '层级' }) level: number; @Column({ default: 0, select: false, name: 'del_flag', comment: '是否删除:0否/1是', }) delFlag: number; }