mirror of
https://gitee.com/mybatis-flex/mybatis-flex.git
synced 2025-12-07 09:08:24 +08:00
feat: 添加 NOT_EQUALS 操作符。
This commit is contained in:
parent
4ed44b7b16
commit
24c7f229cb
@ -41,6 +41,9 @@ public enum SqlOperator {
|
||||
// =
|
||||
EQUALS(SqlConsts.EQUALS),
|
||||
|
||||
// !=
|
||||
NOT_EQUALS(SqlConsts.NOT_EQUALS),
|
||||
|
||||
// is null
|
||||
IS_NULL(SqlConsts.IS_NULL),
|
||||
|
||||
@ -70,4 +73,5 @@ public enum SqlOperator {
|
||||
public String getValue() {
|
||||
return value;
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user