程序包 cn.zhxu.bs
类 FieldOps
java.lang.Object
cn.zhxu.bs.FieldOps
过滤运算符
- 作者:
- Troy.Zhou @ 2017-03-20
-
字段概要
字段修饰符和类型字段说明static final Between在 ..static final Contain包含 like '%xxx%'static final Empty为空static final EndWith以 ..static final Equal等于static final GreaterEqual大于等于static final GreaterThan大于static final InList在列表中 in (...)static final IsNull为 nullstatic final LessEqual小于等于static final LessThan小于static final NotBetween不在 ..static final NotEmpty不为空static final NotEqual不等于static final NotIn不在某个集合内 not instatic final NotLikenot like {v}static final NotNull不为 nullstatic final OrLikelike {v1} or like {v1}static final StartWith以 .. -
构造器概要
构造器 -
方法概要
-
字段详细资料
-
Equal
等于 -
NotEqual
不等于 -
GreaterEqual
大于等于 -
GreaterThan
大于 -
LessEqual
小于等于 -
LessThan
小于 -
IsNull
为 null -
NotNull
不为 null -
Empty
为空 -
NotEmpty
不为空 -
Contain
包含 like '%xxx%' -
StartWith
以 .. 开始 like 'xxx%' -
EndWith
以 .. 结束 like '%xxx' -
OrLike
like {v1} or like {v1} -
NotLike
not like {v} -
Between
在 .. 和 .. 之间 -
NotBetween
不在 .. 和 .. 之间 -
InList
在列表中 in (...) -
NotIn
不在某个集合内 not in- 从以下版本开始:
- v3.3
-
-
构造器详细资料
-
FieldOps
public FieldOps()
-