mirror of
https://gitee.com/dromara/easy-es.git
synced 2025-12-07 17:48:42 +08:00
387 B
387 B
notIn(R column, Collection<?> value)
notIn(boolean condition, R column, Collection<?> value)
- 字段 not in (value.get(0), value.get(1), ...)
- 例: notIn("age",{1,2,3})--->age not in (1,2,3)
notIn(R column, Object... values)
notIn(boolean condition, R column, Object... values)
- 字段 not in (v0, v1, ...)
- 例: notIn("age", 1, 2, 3)--->age not in (1,2,3)