fuliqi
2024-09-11 b14531e3b850fe6d2fa916ba7b88b3e2bd2ff30a
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
package com.ycl.platform.domain.vo.DataCenter;
 
import lombok.Data;
 
import java.math.BigDecimal;
import java.util.Date;
 
/**
 * 档案考核比数据
 *
 * @author:xp
 * @date:2024/7/31 9:31
 */
@Data
public class VideoUseableVO {
 
    private String id;
 
    /** 行政区域名称 */
    private String arealayername;
 
    /** 行政区域ID */
    private String arealayerno;
 
    /** 创建时间 */
    private Date createTime;
 
    /** 摄像机ID */
    private String deviceId;
 
    /** 摄像机名称 */
    private String deviceName;
 
    /** 缺失时长 */
    private Double missDuration;
 
    /** 国标平台ID */
    private String platId;
 
    /** 录像时长 */
    private Double recordDuration;
 
    /** 录像完整状态 1:完整 0:间歇 -1:异常 */
    private Integer recordStatus;
 
    /** 统计时间 */
    private Date statTime;
 
    /** 租户ID */
    private String tenantId;
}