package com.ruoyi.system.domain; import java.util.List; /** * CMS车辆设备列表响应 */ public class CmsVehicleDeviceListResponse { private int result; private List devices; public int getResult() { return result; } public void setResult(int result) { this.result = result; } public List getDevices() { return devices; } public void setDevices(List 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; } } }