13693261870
2025-04-08 3417cf014a65765e02696c1d121ce58b2b4a8aed
src/main/java/com/se/simu/domain/vo/QueryVo.java
@@ -1,16 +1,10 @@
package com.se.simu.domain.vo;
import com.se.simu.helper.StringHelper;
@SuppressWarnings("ALL")
public class QueryVo {
    private String token;
    private Integer start;
    private Integer count;
    private String dbid;
    private String layerid;
@@ -18,9 +12,11 @@
    private String where;
    private String querytype;
    private String geometry;
    private Double buffer;
    private Boolean returnGeom;
    public QueryVo() {
    }
@@ -30,15 +26,7 @@
        if (null == count || count < 0) count = 10;
        if (count > 10000) count = 10000;
        if (null == containCount) containCount = false;
        if (StringHelper.isEmpty(querytype)) querytype = "entity";
    }
    public String getToken() {
        return token;
    }
    public void setToken(String token) {
        this.token = token;
        if (null == returnGeom) returnGeom = false;
    }
    public int getCount() {
@@ -47,14 +35,6 @@
    public void setCount(int count) {
        this.count = count;
    }
    public String getDbid() {
        return dbid;
    }
    public void setDbid(String dbid) {
        this.dbid = dbid;
    }
    public String getLayerid() {
@@ -79,14 +59,6 @@
    public void setWhere(String where) {
        this.where = where;
    }
    public String getQuerytype() {
        return querytype;
    }
    public void setQuerytype(String querytype) {
        this.querytype = querytype;
    }
    public Integer getStart() {
@@ -116,4 +88,20 @@
    public void setGeometry(String geometry) {
        this.geometry = geometry;
    }
    public Double getBuffer() {
        return buffer;
    }
    public void setBuffer(Double buffer) {
        this.buffer = buffer;
    }
    public Boolean getReturnGeom() {
        return returnGeom;
    }
    public void setReturnGeom(Boolean returnGeom) {
        this.returnGeom = returnGeom;
    }
}