From 24c7f229cb4b7ded1e8707cbfc46781a9296010c Mon Sep 17 00:00:00 2001 From: Suomm <1474983351@qq.com> Date: Wed, 16 Aug 2023 17:15:57 +0800 Subject: [PATCH] =?UTF-8?q?feat:=20=E6=B7=BB=E5=8A=A0=20NOT=5FEQUALS=20?= =?UTF-8?q?=E6=93=8D=E4=BD=9C=E7=AC=A6=E3=80=82?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../main/java/com/mybatisflex/core/constant/SqlOperator.java | 4 ++++ 1 file changed, 4 insertions(+) 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; } + }