wlzboy
2025-09-20 b62bc392f3c1658381107be1d5f737a3389e7f5f
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
package com.ruoyi.gps.domain;
 
import java.util.List;
 
public class GpsTrackQueryResponse {
    private int status;
    private String cause;
    private String deviceid;
    private List<GpsTrackPoint> records;
 
    public int getStatus() {
        return status;
    }
 
    public void setStatus(int status) {
        this.status = status;
    }
 
    public String getCause() {
        return cause;
    }
 
    public void setCause(String cause) {
        this.cause = cause;
    }
 
    public String getDeviceid() {
        return deviceid;
    }
 
    public void setDeviceid(String deviceid) {
        this.deviceid = deviceid;
    }
 
    public List<GpsTrackPoint> getRecords() {
        return records;
    }
 
    public void setRecords(List<GpsTrackPoint> records) {
        this.records = records;
    }