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;