| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960 | 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;    }}
 |