mirror of
https://gitee.com/mybatis-flex/mybatis-flex.git
synced 2025-12-08 09:38:26 +08:00
Merge branch 'main' of https://gitee.com/mybatis-flex/mybatis-flex into main
This commit is contained in:
commit
85d5e7778f
@ -2571,6 +2571,13 @@ public class QueryMethods {
|
|||||||
return new OperatorQueryCondition("NOT ", childCondition);
|
return new OperatorQueryCondition("NOT ", childCondition);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* {@code NOT (column)} 或 {@code NOT column}
|
||||||
|
*/
|
||||||
|
public static <N> QueryColumn not(LambdaGetter<N> column) {
|
||||||
|
return new FunctionQueryColumn("NOT", LambdaUtil.getQueryColumn(column));
|
||||||
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* 空条件。
|
* 空条件。
|
||||||
*/
|
*/
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user