mirror of
https://gitee.com/mybatis-flex/mybatis-flex.git
synced 2025-12-06 16:48:24 +08:00
refactor: 废弃使用多个值的 SQL 连接符。
This commit is contained in:
parent
3789f529a0
commit
64786639fe
@ -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;
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user