package org.jeecg.modules.demo.bussMapQuery.controller; public class QueryRecord { String id; String name; String layerName; String otherInfo; String geoinfo; public QueryRecord() { } public QueryRecord(String id, String name, String layerName, String otherInfo, String geoinfo) { this.id = id; this.name = name; this.layerName = layerName; this.otherInfo = otherInfo; this.geoinfo = geoinfo; } public String getId() { return id; } public void setId(String id) { this.id = id; } public String getName() { return name; } public void setName(String name) { this.name = name; } public String getLayerName() { return layerName; } public void setLayerName(String layerName) { this.layerName = layerName; } public String getOtherInfo() { return otherInfo; } public void setOtherInfo(String otherInfo) { this.otherInfo = otherInfo; } public String getGeoinfo() { return geoinfo; } public void setGeoinfo(String geoinfo) { this.geoinfo = geoinfo; } }