File tree Expand file tree Collapse file tree 2 files changed +3
-5
lines changed
springboot-starter-data-fast/src/main/java/com/codingapi/springboot/fast/jpa/repository
springboot-starter/src/main/java/com/codingapi/springboot/framework/dto/request Expand file tree Collapse file tree 2 files changed +3
-5
lines changed Original file line number Diff line number Diff line change 1
1
package com .codingapi .springboot .fast .jpa .repository ;
2
2
3
3
import com .codingapi .springboot .framework .dto .request .PageRequest ;
4
+ import com .codingapi .springboot .framework .dto .request .SearchRequest ;
4
5
import org .springframework .core .ResolvableType ;
5
6
import org .springframework .data .domain .Page ;
6
7
import org .springframework .data .jpa .repository .JpaRepository ;
Original file line number Diff line number Diff line change 1
- package com .codingapi .springboot .fast . jpa . repository ;
1
+ package com .codingapi .springboot .framework . dto . request ;
2
2
3
3
import com .alibaba .fastjson .JSON ;
4
4
import com .alibaba .fastjson .JSONArray ;
5
5
import com .alibaba .fastjson .JSONObject ;
6
- import com .codingapi .springboot .framework .dto .request .Filter ;
7
- import com .codingapi .springboot .framework .dto .request .PageRequest ;
8
- import com .codingapi .springboot .framework .dto .request .Relation ;
9
6
import jakarta .servlet .http .HttpServletRequest ;
10
7
import org .springframework .data .domain .Sort ;
11
8
import org .springframework .util .StringUtils ;
@@ -120,7 +117,7 @@ private Class<?> getKeyType(String key) {
120
117
121
118
}
122
119
123
- PageRequest toPageRequest (Class <?> clazz ) {
120
+ public PageRequest toPageRequest (Class <?> clazz ) {
124
121
pageRequest .setCurrent (current );
125
122
pageRequest .setPageSize (pageSize );
126
123
You can’t perform that action at this time.
0 commit comments