Skip to content

Commit

Permalink
🔧 fix: 修复AbstractDatabase.java中的缩进错误
Browse files Browse the repository at this point in the history
  • Loading branch information
vnobo committed May 26, 2024
1 parent e8aabfc commit 7d81311
Showing 1 changed file with 1 addition and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -58,6 +58,7 @@ protected <T> Flux<T> queryWithCache(Object key, Flux<T> sourceFlux) {
protected <T> Mono<Long> countWithCache(Object key, Query query, Class<T> entityClass) {
Mono<Long> source = this.entityTemplate.count(query, entityClass);
return countWithCache(key, source);

}

protected Mono<Long> countWithCache(Object key, String sql, Map<String, Object> bindParams) {
Expand Down

0 comments on commit 7d81311

Please sign in to comment.