wanglizhong
2025-05-14 f1ba120c486048373505acfa74c3943c19be55ca
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
package com.ruoyi.system.domain;
 
import java.util.List;
 
/**
 * CMS车辆设备列表响应
 */
public class CmsVehicleDeviceListResponse {
    private int result;
    private List<CmsVehicleDevice> devices;
 
    public int getResult() {
        return result;
    }
 
    public void setResult(int result) {
        this.result = result;
    }
 
    public List<CmsVehicleDevice> getDevices() {
        return devices;
    }
 
    public void setDevices(List<CmsVehicleDevice> devices) {
        this.devices = devices;
    }
 
    /**
     * CMS车辆设备信息
     */
    public static class CmsVehicleDevice {
        private String vid;    // 车牌号
        private int type;      // 设备类型(1:视频设备,0:GPS设备)
        private String did;    // 设备号
 
        public String getVid() {
            return vid;
        }
 
        public void setVid(String vid) {
            this.vid = vid;
        }
 
        public int getType() {
            return type;
        }
 
        public void setType(int type) {
            this.type = type;
        }
 
        public String getDid() {
            return did;
        }
 
        public void setDid(String did) {
            this.did = did;
        }
    }