wzp
2025-05-05 94ff46df856f6d4f8d8393e22001351c793f4e5b
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
package com.ruoyi.system.domain;
 
import com.fasterxml.jackson.annotation.JsonProperty;
import java.io.Serializable;
import java.util.List;
 
/**
 * CMS车辆设备列表查询响应
 */
public class CmsVehicleDeviceListResponse implements Serializable {
    private static final long serialVersionUID = 1L;
 
    /** 结果码 */
    @JsonProperty("result")
    private Integer result;
 
    /** 设备列表 */
    @JsonProperty("devices")
    private List<VehicleDevice> devices;
 
    public Integer getResult() {
        return result;
    }
 
    public void setResult(Integer result) {
        this.result = result;
    }
 
    public List<VehicleDevice> getDevices() {
        return devices;
    }
 
    public void setDevices(List<VehicleDevice> devices) {
        this.devices = devices;
    }
 
    public static class VehicleDevice {
        /** 车牌号 */
        @JsonProperty("vid")
        private String vehicleId;
 
        /** 设备类型 */
        @JsonProperty("type")
        private Integer type;
 
        /** 设备号 */
        @JsonProperty("did")
        private String deviceId;
 
        public String getVehicleId() {
            return vehicleId;
        }
 
        public void setVehicleId(String vehicleId) {
            this.vehicleId = vehicleId;
        }
 
        public Integer getType() {
            return type;
        }
 
        public void setType(Integer type) {
            this.type = type;
        }
 
        public String getDeviceId() {
            return deviceId;
        }
 
        public void setDeviceId(String deviceId) {
            this.deviceId = deviceId;
        }
    }