mirror of
https://gitee.com/dromara/easy-es.git
synced 2025-12-06 17:18:57 +08:00
8 lines
234 B
Markdown
8 lines
234 B
Markdown
```java
|
|
and(Consumer<Param> consumer)
|
|
and(boolean condition, Consumer<Param> consumer)
|
|
```
|
|
|
|
- AND 嵌套
|
|
- 例: and(i -> i.eq(Document::getTitle, "Hello").ne(Document::getCreator, "Guy"))--->and (title ='Hello' and creator != 'Guy' )
|