File tree 5 files changed +17
-4
lines changed
src/main/java/com/codingapi/springboot/framework/dto/request
springboot-starter-data-fast
springboot-starter-security
5 files changed +17
-4
lines changed Original file line number Diff line number Diff line change 12
12
13
13
<groupId >com.codingapi.springboot</groupId >
14
14
<artifactId >springboot-parent</artifactId >
15
- <version >3.2.1 </version >
15
+ <version >3.2.2 </version >
16
16
17
17
<url >https://github.com/codingapi/springboot-framewrok</url >
18
18
<name >springboot-parent</name >
Original file line number Diff line number Diff line change 5
5
<parent >
6
6
<artifactId >springboot-parent</artifactId >
7
7
<groupId >com.codingapi.springboot</groupId >
8
- <version >3.2.1 </version >
8
+ <version >3.2.2 </version >
9
9
</parent >
10
10
<modelVersion >4.0.0</modelVersion >
11
11
Original file line number Diff line number Diff line change 6
6
<parent >
7
7
<artifactId >springboot-parent</artifactId >
8
8
<groupId >com.codingapi.springboot</groupId >
9
- <version >3.2.1 </version >
9
+ <version >3.2.2 </version >
10
10
</parent >
11
11
12
12
<artifactId >springboot-starter-security</artifactId >
Original file line number Diff line number Diff line change 5
5
<parent >
6
6
<groupId >com.codingapi.springboot</groupId >
7
7
<artifactId >springboot-parent</artifactId >
8
- <version >3.2.1 </version >
8
+ <version >3.2.2 </version >
9
9
</parent >
10
10
<artifactId >springboot-starter</artifactId >
11
11
Original file line number Diff line number Diff line change 14
14
import java .lang .reflect .Field ;
15
15
import java .util .ArrayList ;
16
16
import java .util .Base64 ;
17
+ import java .util .Enumeration ;
17
18
import java .util .List ;
18
19
19
20
/**
20
21
* HttpServletRequest 请求参数解析成 PageRequest对象
21
22
*/
22
23
public class SearchRequest {
23
24
25
+ @ Getter
24
26
private int current ;
27
+ @ Getter
25
28
private int pageSize ;
26
29
27
30
private final HttpServletRequest request ;
@@ -63,6 +66,16 @@ public String[] getParameterValues(String key) {
63
66
return request .getParameterValues (key );
64
67
}
65
68
69
+
70
+ public List <String > getParameterNames () {
71
+ Enumeration <String > enumeration = request .getParameterNames ();
72
+ List <String > list = new ArrayList <>();
73
+ while (enumeration .hasMoreElements ()) {
74
+ list .add (enumeration .nextElement ());
75
+ }
76
+ return list ;
77
+ }
78
+
66
79
public PageRequest addFilter (String key , Relation relation , Object ... value ) {
67
80
return pageRequest .addFilter (key , relation , value );
68
81
}
You can’t perform that action at this time.
0 commit comments