YYC
2025-03-07 aee5c93d9d8f904d84ecdfff6025ddace615c6b2
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
package com.fzzy.push.nx2024.dto;
 
import com.alibaba.fastjson.annotation.JSONField;
import com.bstek.dorado.annotation.PropertyDef;
import lombok.Data;
import java.io.Serializable;
import java.util.Date;
 
/**
 * @Description 宁夏省平台2024版-视频监控异常事件告警基本信息数据表
 * @Author CZT
 * @Date 2024/7/25 15:12
 */
@Data
public class Nx2024Api2433 implements Serializable {
 
    @JSONField(format = "yyyy-MM-dd HH:mm:ss")
    @PropertyDef(label = "告警时间" )
    private Date gjsj;
 
    @PropertyDef(label = "库区名称" )
    private String kqmc;
 
    @PropertyDef(label = "库区代码" )
    private String kqdm;
 
    @PropertyDef(label = "统一库区编码")
    private String tykqbm;
 
    @PropertyDef(label = "库区地址" )
    private String kqdz;
 
    @PropertyDef(label = "视频监控设备id" )
    private String spjksbid;
 
    @PropertyDef(label = "安装位置类型" )
    private String azwzlx;
 
    @PropertyDef(label = "监视区域说明" )
    private String jsqysm;
 
    @PropertyDef(label = "异常告警说明" )
    private String ycgjsm;
 
    @PropertyDef(label = "图像编号")
    private String txbh;
 
    @PropertyDef(label = "视频编号")
    private String spbh;
 
    @PropertyDef(label = "当前处置状态")
    private String czzt;
 
    @PropertyDef(label = "处置内容")
    private String hxczqk;
 
    @PropertyDef(label = "处置人")
    private String hxczr;
 
    @PropertyDef(label = "处置时间")
    private Date hhxczsj;
 
    @PropertyDef(label = "操作标志" )
    private String czbz;
 
    @JSONField(format = "yyyy-MM-dd HH:mm:ss")
    @PropertyDef(label = "最后更新时间" )
    private Date zhgxsj;
    
 
}