648540858
2023-04-04 b4048fbe80dba8e7756ae557a15ab60b4f80a44b
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
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
package com.genersoft.iot.vmp.gb28181.bean;
 
 
import com.genersoft.iot.vmp.utils.DateUtil;
import io.swagger.v3.oas.annotations.media.Schema;
import org.jetbrains.annotations.NotNull;
 
import java.time.Instant;
import java.time.temporal.TemporalAccessor;
 
/**
 * @description:设备录像bean 
 * @author: swwheihei
 * @date:   2020年5月8日 下午2:06:54     
 */
@Schema(description = "设备录像详情")
public class RecordItem  implements Comparable<RecordItem>{
 
    @Schema(description = "设备编号")
    private String deviceId;
 
    @Schema(description = "名称")
    private String name;
 
    @Schema(description = "文件路径名 (可选)")
    private String filePath;
 
    @Schema(description = "录像文件大小,单位:Byte(可选)")
    private String fileSize;
 
    @Schema(description = "录像地址(可选)")
    private String address;
 
    @Schema(description = "录像开始时间(可选)")
    private String startTime;
 
    @Schema(description = "录像结束时间(可选)")
    private String endTime;
 
    @Schema(description = "保密属性(必选)缺省为0;0:不涉密,1:涉密")
    private int secrecy;
 
    @Schema(description = "录像产生类型(可选)time或alarm 或 manua")
    private String type;
 
    @Schema(description = "录像触发者ID(可选)")
    private String recorderId;
 
    public String getDeviceId() {
        return deviceId;
    }
 
    public void setDeviceId(String deviceId) {
        this.deviceId = deviceId;
    }
 
    public String getName() {
        return name;
    }
 
    public void setName(String name) {
        this.name = name;
    }
 
    public String getFilePath() {
        return filePath;
    }
 
    public void setFilePath(String filePath) {
        this.filePath = filePath;
    }
 
    public String getAddress() {
        return address;
    }
 
    public void setAddress(String address) {
        this.address = address;
    }
 
    public String getStartTime() {
        return startTime;
    }
 
    public void setStartTime(String startTime) {
        this.startTime = startTime;
    }
 
    public String getEndTime() {
        return endTime;
    }
 
    public void setEndTime(String endTime) {
        this.endTime = endTime;
    }
 
    public int getSecrecy() {
        return secrecy;
    }
 
    public void setSecrecy(int secrecy) {
        this.secrecy = secrecy;
    }
 
    public String getType() {
        return type;
    }
 
    public void setType(String type) {
        this.type = type;
    }
 
    public String getRecorderId() {
        return recorderId;
    }
 
    public void setRecorderId(String recorderId) {
        this.recorderId = recorderId;
    }
 
    public String getFileSize() {
        return fileSize;
    }
 
    public void setFileSize(String fileSize) {
        this.fileSize = fileSize;
    }
 
    @Override
    public int compareTo(@NotNull RecordItem recordItem) {
        TemporalAccessor startTimeNow = DateUtil.formatter.parse(startTime);
        TemporalAccessor startTimeParam = DateUtil.formatter.parse(recordItem.getStartTime());
        Instant startTimeParamInstant = Instant.from(startTimeParam);
        Instant startTimeNowInstant = Instant.from(startTimeNow);
        if (startTimeNowInstant.equals(startTimeParamInstant)) {
            return 0;
        }else if (Instant.from(startTimeParam).isAfter(Instant.from(startTimeNow)) ) {
            return -1;
        }else {
            return 1;
        }
 
    }
}