From 64786639fe68f0ffd1f1bb315c3f7a363c48f35b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E7=8E=8B=E5=B8=85?= <1474983351@qq.com> Date: Sun, 29 Sep 2024 10:12:56 +0800 Subject: [PATCH] =?UTF-8?q?refactor:=20=E5=BA=9F=E5=BC=83=E4=BD=BF?= =?UTF-8?q?=E7=94=A8=E5=A4=9A=E4=B8=AA=E5=80=BC=E7=9A=84=20SQL=20=E8=BF=9E?= =?UTF-8?q?=E6=8E=A5=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 420003a8..2a1b20bf 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 @@ -101,21 +101,25 @@ public enum SqlOperator { /** * in */ + @Deprecated IN(SqlConsts.IN), /** * not in */ + @Deprecated NOT_IN(SqlConsts.NOT_IN), /** * between */ + @Deprecated BETWEEN(SqlConsts.BETWEEN), /** * not between */ + @Deprecated NOT_BETWEEN(SqlConsts.NOT_BETWEEN); private final String value;