zm
2020-05-18 a18bfacbf56b401f6e0fdae8710fbca4df8cff77
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
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
package cn.autoform.web.client.util;
 
import java.io.Serializable;
import java.util.ArrayList;
import java.util.List;
 
/**
 * 分页工具类
 * @author yuezhw
 *
 */
public class PageTool implements Serializable {
    
     private static final long serialVersionUID = 1L;
        // 传参或指定
        private int num; // 当前页号, 采用自然数计数 1,2,3,...
        private int size; // 页面大小:一个页面显示多少个数据
 
        // 需要从数据库中查找出
        private long rowCount;// 数据总数:一共有多少个数据
        private List<?> list;
 
        // 可以根据上面属性:num,size,rowCount计算出
        private int pageCount; // 页面总数
        private int startRow;// 当前页面开始行, 第一行是0行
        private int first = 1;// 第一页 页号
        private int last;// 最后页 页号
        private int next;// 下一页 页号
        private int prev;// 前页 页号
        private int start;// 页号式导航, 起始页号
        private int end;// 页号式导航, 结束页号
        private int numCount = 10;// 页号式导航, 最多显示页号数量为numCount+1;这里显示11页。
        public List<String> showPages = new ArrayList<String>(); //要显示的页号
        private Object queryClass;//保存查询条件
        private String queryUrl;
 
        public Object getQueryClass() {
            return queryClass;
        }
 
        public void setQueryClass(Object queryClass) {
            this.queryClass = queryClass;
        }
 
        public int getNum() {
            return num;
        }
 
        public void setNum(int num) {
            if (num <= 0) {
                this.num = 1;
            } else {
                this.num = num;
            }
        }
 
        public int getSize() {
            return size;
        }
 
        public void setSize(int size) {
            this.size = size;
        }
 
        public long getRowCount() {
            return rowCount;
        }
 
        public void setRowCount(long rowCount) {
            this.rowCount = rowCount;
        }
 
        public int getPageCount() {
            return pageCount;
        }
 
        public void setPageCount(int pageCount) {
            this.pageCount = pageCount;
        }
 
        public int getStartRow() {
            return startRow;
        }
 
        public void setStartRow(int startRow) {
            this.startRow = startRow;
        }
 
        public int getFirst() {
            return first;
        }
 
        public void setFirst(int first) {
            this.first = first;
        }
 
        public int getLast() {
            return last;
        }
 
        public void setLast(int last) {
            this.last = last;
        }
 
        public int getNext() {
            return next;
        }
 
        public void setNext(int next) {
            this.next = next;
        }
 
        public int getPrev() {
            return prev;
        }
 
        public void setPrev(int prev) {
            this.prev = prev;
        }
 
        public int getStart() {
            return start;
        }
 
        public void setStart(int start) {
            this.start = start;
        }
 
        public int getEnd() {
            return end;
        }
 
        public void setEnd(int end) {
            this.end = end;
        }
 
        public int getNumCount() {
            return numCount;
        }
 
        public void setNumCount(int numCount) {
            this.numCount = numCount;
        }
 
 
        public List<String> getShowPages() {
            return showPages;
        }
 
        public void setShowPages(List<String> showPages) {
            this.showPages = showPages;
        }
 
        public String getQueryUrl() {
            return queryUrl;
        }
 
        public void setQueryUrl(String queryUrl) {
            this.queryUrl = queryUrl;
        }
 
        @SuppressWarnings("rawtypes")
        public List getList() {
            return list;
        }
 
        @SuppressWarnings("rawtypes")
        public void setList(List list) {
            this.list = list;
        }
 
        public PageTool(int size, String str_num, long rowCount) {
            int num = 1;
            if (str_num != null) {
                num = Integer.parseInt(str_num);
            }
            this.num = num;
            this.size = size;
            this.rowCount = rowCount;
 
            this.pageCount = (int) Math.ceil((double) rowCount / size);
            this.num = Math.min(this.num, pageCount);
            this.num = Math.max(1, this.num);
 
            this.startRow = (this.num - 1) * size;
            this.last = this.pageCount;
            this.next = Math.min(this.pageCount, this.num + 1);
            this.prev = Math.max(1, this.num - 1);
 
            // 计算page 控制
            start = Math.max(this.num - numCount / 2, first);
            end = Math.min(start + numCount, last);
            if (end - start < numCount) {
                start = Math.max(end - numCount, 1);
            }
            for(int i = start; i <= end; i++){
                showPages.add(String.valueOf(i));
            }
 
 
        }
 
        public PageTool(int size, int num, long rowCount) {
            if (num <= 0) {
                num = 1;
            }
            this.num = num;
            this.size = size;
            this.rowCount = rowCount;
 
            this.pageCount = (int) Math.ceil((double) rowCount / size);
            this.num = Math.min(this.num, pageCount);
            this.num = Math.max(1, this.num);
 
            this.startRow = (this.num - 1) * size;
            this.last = this.pageCount;
            this.next = Math.min(this.pageCount, this.num + 1);
            this.prev = Math.max(1, this.num - 1);
 
            // 计算page 控制
            start = Math.max(this.num - numCount / 2, first);
            end = Math.min(start + numCount, last);
            if (end - start < numCount) {
                start = Math.max(end - numCount, 1);
            }
            for(int i = start; i <= end; i++){
                showPages.add(String.valueOf(i));
            }
 
        }
 
        public PageTool() {
        }
 
}