wlzboy
2025-09-21 7d81ce01560d384f15212edc40ebeaa9924913f9
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
package com.ruoyi.system.domain;
 
import com.fasterxml.jackson.annotation.JsonProperty;
import lombok.Data;
 
import java.io.Serializable;
import java.util.List;
 
/**
 * CMS车辆位置信息查询响应
 */
@Data
public class CmsVehicleLocationResponse implements Serializable {
    private static final long serialVersionUID = 1L;
 
    /** 结果码 */
    @JsonProperty("result")
    private Integer result;
 
    /** 位置信息列表 */
    @JsonProperty("infos")
    private List<VehicleLocation> infos;
 
    /** 分页信息 */
    @JsonProperty("pagination")
    private Pagination pagination;
 
 
    @Data
    public  class VehicleLocation implements Serializable {
        /** 车牌号 */
        @JsonProperty("vi")
        private String vi;
 
        /** 时间戳 */
        @JsonProperty("tm")
        private Long tm;
 
        /** 经度 */
        @JsonProperty("jd")
        private Double jd;
 
        /** 纬度 */
        @JsonProperty("wd")
        private Double wd;
 
        /** 地理位置 */
        @JsonProperty("pos")
        private String pos;
 
    }
 
    @Data
    public  class Pagination implements Serializable{
        /** 总页数 */
        @JsonProperty("totalPages")
        private Integer totalPages;
 
        /** 当前页 */
        @JsonProperty("currentPage")
        private Integer currentPage;
 
        /** 每页记录数 */
        @JsonProperty("pageRecords")
        private Integer pageRecords;
 
        /** 总记录数 */
        @JsonProperty("totalRecords")
        private Integer totalRecords;
 
        /** 排序参数 */
        @JsonProperty("sortParams")
        private String sortParams;
 
        /** 是否有下一页 */
        @JsonProperty("hasNextPage")
        private Boolean hasNextPage;
 
        /** 是否有上一页 */
        @JsonProperty("hasPreviousPage")
        private Boolean hasPreviousPage;
 
        /** 下一页 */
        @JsonProperty("nextPage")
        private Integer nextPage;
 
        /** 上一页 */
        @JsonProperty("previousPage")
        private Integer previousPage;
 
        /** 起始记录 */
        @JsonProperty("startRecord")
        private Integer startRecord;
 
    }