feat: 添加 NOT_EQUALS 操作符。

This commit is contained in:
Suomm 2023-08-16 17:15:57 +08:00
parent 4ed44b7b16
commit 24c7f229cb

View File

@ -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;
}
}