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
package com.ruoyi.dataInterchange.model;
 
import com.fasterxml.jackson.annotation.JsonProperty;
import lombok.Data;
 
/**
 * 发送车辆定位信息数量通知
 * @author zhibing.pu
 * @Date 2025/2/24 11:20
 */
@Data
public class UPManageTotalRecvBackMsg {
    /**
     * 发送的车辆定位信息数量
     */
    @JsonProperty("DYNAMIC_INFO_TOTAL")
    private String dynamicInfoTotal;
    /**
     * 开始时间,用UTC时间表示
     */
    @JsonProperty("START_TIME")
    private String startTime;
    /**
     * 结束时间,用UTC时间表示
     */
    @JsonProperty("END_TIME")
    private String endTime;
}