fuliqi
2024-08-12 cb18d50564b078747a2bf4a30b767ad876a97b6a
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
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
package com.ycl.platform.domain.result.UY;
 
import com.fasterxml.jackson.annotation.JsonFormat;
import com.ycl.platform.domain.result.BaseResult;
import lombok.Data;
import org.springframework.data.mongodb.core.index.TextIndexed;
import org.springframework.data.mongodb.core.mapping.Document;
 
import java.util.Date;
import java.util.List;
 
/**
 * 点位在线率
 *
 * @author gonghl
 * @since 2024-4-19 11:37:30
 */
@Data
@Document(collection = "uy_online")
public class VideoOnlineResult extends BaseResult {
 
    /**
     * 行政区划编码
     */
    private String arealayerPath;
    /**
     * 行政区划编码
     */
    private String arealayerno;
    /**
     * 行政区划名称
     */
    @TextIndexed
    private String arealayerName;
 
    /**
     * 解码状态码
     */
    private Integer decodingCode;
 
    /**
     * 设备id
     */
    private String deviceId;
    /**
     * 设备名称
     */
    private String deviceName;
    /**
     * icmp延迟
     */
    private Double icmpDelay;
    /**
     * icmp状态  2/1/-1/0   全部/在线/离线/未知
     */
    private Integer icmpStatus;
    /**
     * 最近icmp时间
     */
    @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss")
    private Date icmpTime;
    /**
     * 关键帧时延
     */
    private Integer ifmDelay;
    /**
     * ip地址
     */
    private String ipAddr;
    /**
     * 最近持续离线故障次数
     */
    private Integer olErrEverduring;
    /**
     *
     */
    @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss")
    private Date olErrEverduringFirstTime;
    /**
     * 累计离线故障次数
     */
    private Integer olErrTotal;
    /**
     * 累计离线故障率
     */
    private String olErrTotalRate;
    /**
     * 巡检次数
     */
    private Integer olTotal;
    /**
     * sip状态码
     */
    private Integer sipCode;
    /**
     * 信令时延
     */
    private Integer sipDelay;
    /**
     * 在线状态  2/1/-1/0   全部/在线/离线/未知
     */
    private Integer status;
    /**
     * 省厅标签
     */
    private String tagStr;
    /**
     * 省厅标签
     */
    private List<String> tags;
    /**
     * 租户id
     */
    private String tenantId;
    /**
     * 视频流时延
     */
    private Integer videoDelay;
    /**
     *
     */
    @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss")
    private Date vqdTime;
 
}