Pu Zhibing
2025-02-28 8baab7959e8efd5be4c0276b7759c2b677eeb7df
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
package com.ruoyi.dataInterchange.model;
 
import com.fasterxml.jackson.annotation.JsonProperty;
import lombok.Data;
 
/**
 * 平台链路连接情况与车辆定位消息应答
 * @author zhibing.pu
 * @Date 2025/2/24 11:28
 */
@Data
public class DOWNManageMsgRsp {
    /**
     * 子业务类型标识
     */
    @JsonProperty("DATA_TYPE")
    private String dataType;
    /**
     * 后续数据长度
     */
    @JsonProperty("DATA_LENGTH")
    private Integer dataLength;
    /**
     * 平台唯一码,由平台所在地区行政区划代码和平台编号组成
     */
    @JsonProperty("PLATFORM_ID")
    private String platformId;
    /**
     * 开始时间
     */
    @JsonProperty("START_TIME")
    private String startTime;
    /**
     * 结束时间
     */
    @JsonProperty("END_TIME")
    private String endTime;
    /**
     * 下级平台丢失的车辆定位信息总数
     */
    @JsonProperty("LOST_DYMAMIC_SUM")
    private Integer lostDynamicSum;
    /**
     * 下级监控平台链路断开次数
     */
    @JsonProperty("DISCONNECT_NUM")
    private Integer disconnectNum;
    /**
     * 下级监控平台链路断开总时长,用秒表示
     */
    @JsonProperty("DISCONNECT_TIME")
    private Long disconnectTime;
}