北京经济技术开发区经开区虚拟城市项目-【后端】-服务,Poi,企业,地块等定制接口
13693261870
2023-10-05 ab2c34275d9527a708330cd6beea1932d13e6b99
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
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
package com.smartearth.poiexcel.entity;
 
import java.io.Serializable;
import java.util.ArrayList;
import java.util.List;
 
/**
 * 企业结果类
 * @author WWW
 */
public class EntResult implements Serializable {
    private static final long serialVersionUID = -8624235184539814993L;
 
    private Integer showCount;
 
    private Integer totalPage;
 
    private Integer totalResult;
 
    private Integer currentPage;
 
    private Integer currentResult;
 
    private Boolean entityOrField;
 
    private PageData pd;
 
    public EntResult() {
    }
 
    public Integer getShowCount() {
        return showCount;
    }
 
    public void setShowCount(Integer showCount) {
        this.showCount = showCount;
    }
 
    public Integer getTotalPage() {
        return totalPage;
    }
 
    public void setTotalPage(Integer totalPage) {
        this.totalPage = totalPage;
    }
 
    public Integer getTotalResult() {
        return totalResult;
    }
 
    public void setTotalResult(Integer totalResult) {
        this.totalResult = totalResult;
    }
 
    public Integer getCurrentPage() {
        return currentPage;
    }
 
    public void setCurrentPage(Integer currentPage) {
        this.currentPage = currentPage;
    }
 
    public Integer getCurrentResult() {
        return currentResult;
    }
 
    public void setCurrentResult(Integer currentResult) {
        this.currentResult = currentResult;
    }
 
    public Boolean getEntityOrField() {
        return entityOrField;
    }
 
    public void setEntityOrField(Boolean entityOrField) {
        this.entityOrField = entityOrField;
    }
 
    public PageData getPd() {
        return pd;
    }
 
    public void setPd(PageData pd) {
        this.pd = pd;
    }
 
    public static class PageData {
        private String ctoken;
 
        private Integer showCount;
 
        private String qylabel;
 
        private String buildDate_startdate;
 
        private String buildDate_enddate;
 
        private Integer currentPage;
 
        private List<EntEntity> list;
 
        public PageData() {
            list = new ArrayList<>();
        }
 
        public String getCtoken() {
            return ctoken;
        }
 
        public void setCtoken(String ctoken) {
            this.ctoken = ctoken;
        }
 
        public Integer getShowCount() {
            return showCount;
        }
 
        public void setShowCount(Integer showCount) {
            this.showCount = showCount;
        }
 
        public String getQylabel() {
            return qylabel;
        }
 
        public void setQylabel(String qylabel) {
            this.qylabel = qylabel;
        }
 
        public String getBuildDate_startdate() {
            return buildDate_startdate;
        }
 
        public void setBuildDate_startdate(String buildDate_startdate) {
            this.buildDate_startdate = buildDate_startdate;
        }
 
        public String getBuildDate_enddate() {
            return buildDate_enddate;
        }
 
        public void setBuildDate_enddate(String buildDate_enddate) {
            this.buildDate_enddate = buildDate_enddate;
        }
 
        public Integer getCurrentPage() {
            return currentPage;
        }
 
        public void setCurrentPage(Integer currentPage) {
            this.currentPage = currentPage;
        }
 
        public List<EntEntity> getList() {
            return list;
        }
 
        public void setList(List<EntEntity> list) {
            this.list = list;
        }
    }
}