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
| import { EntityModel } from '@midwayjs/orm';
| import { BaseEntity } from '@cool-midway/core';
| import { Column, Double } from 'typeorm';
| /**
| * 设备状态
| */
| @EntityModel('t_base_devicestatus')
| export class Basedevicestatus extends BaseEntity {
| @Column({ comment:'{name:"类别",dict:{"1":"心跳", "2":"告警"}}', type:'int', default:null, width:0})
| alarm_type: number;
|
| @Column({ comment:'{name:"物理序列号"}', type:'varchar', default:'', length:50})
| device_id: string;
|
| @Column({ comment:'{name:"设备逻辑ID"}', type:'varchar', default:'', length:50})
| logic_id: string;
|
| @Column({ comment:'{name:"备注"}', type:'varchar', default:'', length:50})
| remark: string;
|
| @Column({ comment:'{name:"上报内容",tips:"可以是json格式"}', type:'varchar', default:'', length:200})
| report_content: string;
|
| @Column({ comment:'{name:"上报时间"}', type:'datetime'})
| report_time: Date;
|
| @Column({ comment:'{name:"状态",dict:{"1":"启用", "0":"停用"}}', type:'int', default:1, width:0})
| status: number;
|
| }
|
|