1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
| import { BaseEntity } from '../../base/entity/base';
| import { Column, Index, Entity } from 'typeorm';
|
| /**
| * 任务日志
| */
| @Entity('task_log')
| export class TaskLogEntity extends BaseEntity {
| @Index()
| @Column({ comment: '任务ID', nullable: true })
| taskId: number;
|
| @Column({ comment: '状态 0-失败 1-成功', default: 0 })
| status: number;
|
| @Column({ comment: '详情描述', nullable: true, type: 'text' })
| detail: string;
| }
|
|