mirror of
https://gitee.com/mybatis-flex/mybatis-flex.git
synced 2025-12-07 00:58:24 +08:00
refactor: 废弃使用多个值的 SQL 连接符。
This commit is contained in:
parent
3789f529a0
commit
64786639fe
@ -101,21 +101,25 @@ public enum SqlOperator {
|
|||||||
/**
|
/**
|
||||||
* in
|
* in
|
||||||
*/
|
*/
|
||||||
|
@Deprecated
|
||||||
IN(SqlConsts.IN),
|
IN(SqlConsts.IN),
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* not in
|
* not in
|
||||||
*/
|
*/
|
||||||
|
@Deprecated
|
||||||
NOT_IN(SqlConsts.NOT_IN),
|
NOT_IN(SqlConsts.NOT_IN),
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* between
|
* between
|
||||||
*/
|
*/
|
||||||
|
@Deprecated
|
||||||
BETWEEN(SqlConsts.BETWEEN),
|
BETWEEN(SqlConsts.BETWEEN),
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* not between
|
* not between
|
||||||
*/
|
*/
|
||||||
|
@Deprecated
|
||||||
NOT_BETWEEN(SqlConsts.NOT_BETWEEN);
|
NOT_BETWEEN(SqlConsts.NOT_BETWEEN);
|
||||||
|
|
||||||
private final String value;
|
private final String value;
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user