dcb
2025-07-01 f31f0991c0d2036e563b886f57de4cf45d3c72cb
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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
package com.se.nsl.domain.vo;
 
@SuppressWarnings("ALL")
public class QueryVo {
    private Integer start;
 
    private Integer count;
 
    private String layerid;
 
    private Boolean containCount;
 
    private String where;
 
    private String geometry;
 
    private Double buffer;
 
    private Boolean returnGeom;
 
    public QueryVo() {
    }
 
    public void setDefault() {
        if (null == start || start < 1) start = 1;
        if (null == count || count < 0) count = 10;
        if (count > 10000) count = 10000;
        if (null == containCount) containCount = false;
        if (null == returnGeom) returnGeom = false;
    }
 
    public int getCount() {
        return count;
    }
 
    public void setCount(int count) {
        this.count = count;
    }
 
    public String getLayerid() {
        return layerid;
    }
 
    public void setLayerid(String layerid) {
        this.layerid = layerid;
    }
 
    public boolean isContainCount() {
        return containCount;
    }
 
    public void setContainCount(boolean containCount) {
        this.containCount = containCount;
    }
 
    public String getWhere() {
        return where;
    }
 
    public void setWhere(String where) {
        this.where = where;
    }
 
    public Integer getStart() {
        return start;
    }
 
    public void setStart(Integer start) {
        this.start = start;
    }
 
    public void setCount(Integer count) {
        this.count = count;
    }
 
    public Boolean getContainCount() {
        return containCount;
    }
 
    public void setContainCount(Boolean containCount) {
        this.containCount = containCount;
    }
 
    public String getGeometry() {
        return geometry;
    }
 
    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;
    }
}