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
| package com.ycl.platform.domain.result.UY;
|
| import lombok.Data;
|
| import java.util.Date;
|
| /**
| * 录像可用性
| * @author gonghl
| */
| @Data
| public class RecordMetaDSumResult {
|
| /**
| * 行政区域名称
| */
| private String arealayername;
|
| /**
| * 行政区域ID
| */
| private String arealayerno;
|
| /**
| * 创建时间,格式为日期时间字符串
| */
| private Date createTime;
|
| /**
| * 摄像机ID
| */
| private String deviceId;
|
| /**
| * 摄像机名称
| */
| private String deviceName;
|
| /**
| * 主键ID
| */
| private String id;
|
| /**
| * 缺失时长,数值类型为双精度浮点数
| */
| private Double missDuration;
|
| /**
| * 国标平台ID
| */
| private String platId;
|
| /**
| * 录像时长,数值类型为双精度浮点数
| */
| private Double recordDuration;
|
| /**
| * 录像完整状态,1:完整,0:间歇,-1:异常
| */
| private Integer recordStatus;
|
| /**
| * 统计时间,格式为日期字符串
| */
| private Date statTime;
|
| /**
| * 租户ID
| */
| private String tenantId;
|
| }
|
|