diff --git a/mybatis-flex-core/src/main/java/com/mybatisflex/core/constant/SqlOperator.java b/mybatis-flex-core/src/main/java/com/mybatisflex/core/constant/SqlOperator.java index bea594f0..fba21076 100644 --- a/mybatis-flex-core/src/main/java/com/mybatisflex/core/constant/SqlOperator.java +++ b/mybatis-flex-core/src/main/java/com/mybatisflex/core/constant/SqlOperator.java @@ -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; } + }