WS
2023-08-17 f6343a600f477f46bd3fb8b1d6c6f3934440681f
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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
package com.fzzy.api.entity;
 
import com.alibaba.fastjson.annotation.JSONField;
import com.bstek.dorado.annotation.PropertyDef;
import lombok.Data;
import org.hibernate.annotations.GenericGenerator;
import javax.persistence.*;
import java.io.Serializable;
import java.util.Date;
 
/**
 * 接口表-视频监控异常事件告警基本信息数据表
 *
 * @author chen
 * @date 2022-09-02 15:59
 */
@Data
@Entity
@Table(name = "API_1308")
public class Api1308 implements Serializable {
 
    /**
     *
     */
    private static final long serialVersionUID = 1L;
 
    @Id
    @JSONField(serialize = false)
    @Column(name = "ID_", length = 40)
    private String id;
 
    @JSONField(format = "yyyy-MM-dd HH:mm:ss")
    @PropertyDef(label = "告警时间" )
    @Column(name = "gjsj", nullable = false)
    private Date gjsj;
 
    @PropertyDef(label = "库区名称" )
    @Column(name = "kqmc", length = 64, nullable = false)
    private String kqmc;
 
    @PropertyDef(label = "库区代码" )
    @Column(name = "kqdm", length = 21, nullable = false)
    private String kqdm;
 
    @PropertyDef(label = "库区地址" )
    @Column(name = "kqdz", length = 256)
    private String kqdz;
 
    @PropertyDef(label = "视频监控设备id" )
    @Column(name = "spjksbid", length = 20, nullable = false)
    private String spjksbid;
 
    @PropertyDef(label = "安装位置类型" )
    @Column(name = "azwzlx", length = 2, nullable = false)
    private String azwzlx;
 
    @PropertyDef(label = "监视区域说明" )
    @Column(name = "jsqysm", length = 256)
    private String jsqysm;
 
    @PropertyDef(label = "异常告警说明" )
    @Column(name = "ycgjsm", length = 1024, nullable = false)
    private String ycgjsm;
 
    @PropertyDef(label = "文件id")
    @Column(name = "fileStorageId", length = 20)
    private String fileStorageId;
 
    @PropertyDef(label = "视频文件后缀名")
    @Column(name = "spwjhzm", length = 5)
    private String spwjhzm;
 
    @PropertyDef(label = "视频文件流" )
    @Column(name = "spwjl", length = 1024, nullable = false)
    private String spwjl;
 
    @PropertyDef(label = "文件地址")
    @Column(name = "wjdz")
    @JSONField(serialize = false)
    private String wjdz;
 
    @PropertyDef(label = "操作标志" )
    @Column(name = "czbz", length = 1, nullable = false)
    private String czbz;
 
    @JSONField(serialize = false)
    @PropertyDef(label = "业务id")
    @Column(name = "bizId", length = 40)
    private String bizId;
 
    @JSONField(format = "yyyy-MM-dd HH:mm:ss")
    @PropertyDef(label = "最后更新时间" )
    @Column(name = "zhgxsj", nullable = false)
    private Date zhgxsj;
 
}