| Modifier and Type | Method and Description |
|---|---|
QueryParamEntity |
QueryParamEntity.clone() |
QueryParamEntity |
QueryParamEntity.doNotSort() |
QueryParamEntity |
QueryParamEntity.noPaging() |
static QueryParamEntity |
QueryParamEntity.of()
创建一个空的查询参数实体,该实体无任何参数.
|
static QueryParamEntity |
QueryParamEntity.of(String field,
Object value) |
| Modifier and Type | Method and Description |
|---|---|
static <T> org.hswebframework.ezorm.core.dsl.Query<T,QueryParamEntity> |
QueryParamEntity.newQuery() |
<T> org.hswebframework.ezorm.core.dsl.Query<T,QueryParamEntity> |
QueryParamEntity.toNestQuery()
将已有的条件包装到一个嵌套的条件里,并返回一个Query对象.例如:
|
<T> org.hswebframework.ezorm.core.dsl.Query<T,QueryParamEntity> |
QueryParamEntity.toNestQuery(Consumer<org.hswebframework.ezorm.core.dsl.Query<T,QueryParamEntity>> before)
将已有的条件包装到一个嵌套的条件里,并返回一个Query对象.例如:
|
<T> org.hswebframework.ezorm.core.dsl.Query<T,QueryParamEntity> |
QueryParamEntity.toQuery() |
| Modifier and Type | Method and Description |
|---|---|
<T> org.hswebframework.ezorm.core.dsl.Query<T,QueryParamEntity> |
QueryParamEntity.toNestQuery(Consumer<org.hswebframework.ezorm.core.dsl.Query<T,QueryParamEntity>> before)
将已有的条件包装到一个嵌套的条件里,并返回一个Query对象.例如:
|
| Modifier and Type | Method and Description |
|---|---|
default reactor.core.publisher.Mono<Integer> |
ReactiveCrudService.count(QueryParamEntity queryParam) |
default reactor.core.publisher.Flux<E> |
ReactiveCrudService.query(QueryParamEntity param) |
default List<E> |
CrudService.query(QueryParamEntity queryParam) |
default reactor.core.publisher.Flux<E> |
ReactiveTreeSortEntityService.queryIncludeChildren(QueryParamEntity queryParam) |
default List<E> |
TreeSortEntityService.queryIncludeChildren(QueryParamEntity queryParam) |
default reactor.core.publisher.Mono<List<E>> |
ReactiveTreeSortEntityService.queryIncludeChildrenTree(QueryParamEntity paramEntity) |
default List<E> |
TreeSortEntityService.queryIncludeChildrenTree(QueryParamEntity paramEntity) |
default reactor.core.publisher.Mono<PagerResult<E>> |
ReactiveCrudService.queryPager(QueryParamEntity queryParamMono) |
default PagerResult<E> |
CrudService.queryPager(QueryParamEntity param) |
default <T> reactor.core.publisher.Mono<PagerResult<T>> |
ReactiveCrudService.queryPager(QueryParamEntity query,
Function<E,T> mapper) |
default reactor.core.publisher.Mono<List<E>> |
ReactiveTreeSortEntityService.queryResultToTree(QueryParamEntity paramEntity) |
default List<E> |
TreeSortEntityService.queryResultToTree(QueryParamEntity paramEntity) |
| Modifier and Type | Method and Description |
|---|---|
default reactor.core.publisher.Mono<Integer> |
ReactiveCrudService.count(reactor.core.publisher.Mono<? extends QueryParamEntity> queryParamMono) |
default reactor.core.publisher.Flux<E> |
ReactiveCrudService.query(reactor.core.publisher.Mono<? extends QueryParamEntity> queryParamMono) |
default reactor.core.publisher.Mono<PagerResult<E>> |
ReactiveCrudService.queryPager(reactor.core.publisher.Mono<? extends QueryParamEntity> queryParamMono) |
default <T> reactor.core.publisher.Mono<PagerResult<T>> |
ReactiveCrudService.queryPager(reactor.core.publisher.Mono<? extends QueryParamEntity> queryParamMono,
Function<E,T> mapper) |
default reactor.core.publisher.Mono<List<E>> |
ReactiveTreeSortEntityService.queryResultToTree(reactor.core.publisher.Mono<? extends QueryParamEntity> paramEntity) |
| Modifier and Type | Method and Description |
|---|---|
default int |
QueryController.count(QueryParamEntity query)
统计查询
|
default int |
ServiceQueryController.count(QueryParamEntity query)
统计查询
|
default int |
QueryController.postCount(QueryParamEntity query) |
default int |
ServiceQueryController.postCount(QueryParamEntity query) |
default List<E> |
QueryController.postQuery(QueryParamEntity query)
POST方式查询.不返回分页结果
|
default List<E> |
ServiceQueryController.postQuery(QueryParamEntity query)
POST方式查询.不返回分页结果
|
default PagerResult<E> |
QueryController.postQueryPager(QueryParamEntity query) |
default PagerResult<E> |
ServiceQueryController.postQueryPager(QueryParamEntity query) |
default List<E> |
QueryController.query(QueryParamEntity query)
查询,但是不返回分页结果.
|
default List<E> |
ServiceQueryController.query(QueryParamEntity query)
查询,但是不返回分页结果.
|
default PagerResult<E> |
QueryController.queryPager(QueryParamEntity query)
GET方式分页查询
|
default PagerResult<E> |
ServiceQueryController.queryPager(QueryParamEntity query)
GET方式分页查询
|
| Modifier and Type | Method and Description |
|---|---|
default reactor.core.publisher.Mono<Integer> |
ReactiveServiceQueryController.count(QueryParamEntity query)
统计查询
|
default reactor.core.publisher.Mono<Integer> |
ReactiveQueryController.count(QueryParamEntity query)
统计查询
|
default reactor.core.publisher.Flux<E> |
ReactiveTreeServiceQueryController.findAllChildren(QueryParamEntity paramEntity) |
default reactor.core.publisher.Mono<List<E>> |
ReactiveTreeServiceQueryController.findAllChildrenTree(QueryParamEntity paramEntity) |
default reactor.core.publisher.Mono<List<E>> |
ReactiveTreeServiceQueryController.findAllTree(QueryParamEntity paramEntity) |
default reactor.core.publisher.Flux<E> |
ReactiveServiceQueryController.query(QueryParamEntity query)
查询,但是不返回分页结果.
|
default reactor.core.publisher.Flux<E> |
ReactiveQueryController.query(QueryParamEntity query)
查询,但是不返回分页结果.
|
default reactor.core.publisher.Mono<PagerResult<E>> |
ReactiveServiceQueryController.queryPager(QueryParamEntity query)
GET方式分页查询
|
default reactor.core.publisher.Mono<PagerResult<E>> |
ReactiveQueryController.queryPager(QueryParamEntity query)
GET方式分页查询
|
| Modifier and Type | Method and Description |
|---|---|
default reactor.core.publisher.Mono<Integer> |
ReactiveServiceQueryController.count(reactor.core.publisher.Mono<QueryParamEntity> query) |
default reactor.core.publisher.Mono<Integer> |
ReactiveQueryController.count(reactor.core.publisher.Mono<QueryParamEntity> query) |
default reactor.core.publisher.Flux<E> |
ReactiveTreeServiceQueryController.findAllChildren(reactor.core.publisher.Mono<QueryParamEntity> paramEntity) |
default reactor.core.publisher.Mono<List<E>> |
ReactiveTreeServiceQueryController.findAllChildrenTree(reactor.core.publisher.Mono<QueryParamEntity> paramEntity) |
default reactor.core.publisher.Mono<List<E>> |
ReactiveTreeServiceQueryController.findAllTree(reactor.core.publisher.Mono<QueryParamEntity> paramEntity) |
default reactor.core.publisher.Flux<E> |
ReactiveServiceQueryController.query(reactor.core.publisher.Mono<QueryParamEntity> query)
POST方式查询.不返回分页结果
|
default reactor.core.publisher.Flux<E> |
ReactiveQueryController.query(reactor.core.publisher.Mono<QueryParamEntity> query)
POST方式查询.不返回分页结果
|
default reactor.core.publisher.Mono<PagerResult<E>> |
ReactiveServiceQueryController.queryPager(reactor.core.publisher.Mono<QueryParamEntity> query) |
default reactor.core.publisher.Mono<PagerResult<E>> |
ReactiveQueryController.queryPager(reactor.core.publisher.Mono<QueryParamEntity> query) |
| Modifier and Type | Method and Description |
|---|---|
reactor.core.publisher.Flux<DictionaryEntity> |
DefaultDictionaryService.findAllDetail(QueryParamEntity paramEntity) |
| Modifier and Type | Method and Description |
|---|---|
reactor.core.publisher.Flux<PermissionEntity> |
WebFluxPermissionController.queryForGrant(QueryParamEntity query) |
Copyright © 2016–2021. All rights reserved.