Uses of Class
cool.scx.data.query.WhereBody
Packages that use WhereBody
-
Uses of WhereBody in cool.scx.data
Methods in cool.scx.data that return WhereBodyModifier and TypeMethodDescriptionstatic WhereBodyQueryBuilder.between(String fieldName, Object value1, Object value2, WhereOption... options) 两者之间static WhereBodyQueryBuilder.eq(String fieldName, Object value, WhereOption... options) 相等static WhereBodyQueryBuilder.ge(String fieldName, Object value, WhereOption... options) 大于等于static WhereBodyQueryBuilder.gt(String fieldName, Object value, WhereOption... options) 大于static WhereBodyQueryBuilder.in(String fieldName, Object value, WhereOption... options) 在其中static WhereBodyQueryBuilder.isNotNull(String fieldName, WhereOption... options) 不为空static WhereBodyQueryBuilder.isNull(String fieldName, WhereOption... options) 为空static WhereBodyQueryBuilder.jsonContains(String fieldName, Object value, WhereOption... options) 包含 : 一般用于 JSON 格式字段 区别于 instatic WhereBodyQueryBuilder.le(String fieldName, Object value, WhereOption... options) 小于等于static WhereBodyQueryBuilder.like(String fieldName, Object value, WhereOption... options) like : 默认会在首尾添加 %static WhereBodyQueryBuilder.likeRegex(String fieldName, String value, WhereOption... options) like : 根据 SQL 表达式进行判断static WhereBodyQueryBuilder.lt(String fieldName, Object value, WhereOption... options) 小于static WhereBodyQueryBuilder.ne(String fieldName, Object value, WhereOption... options) 不相等static WhereBodyQueryBuilder.notBetween(String fieldName, Object value1, Object value2, WhereOption... options) 不处于两者之间static WhereBodyQueryBuilder.notIn(String fieldName, Object value, WhereOption... options) 不在其中static WhereBodyQueryBuilder.notLike(String fieldName, Object value, WhereOption... options) not like : 默认会在首尾添加 %static WhereBodyQueryBuilder.notLikeRegex(String fieldName, String value, WhereOption... options) not like : 根据 SQL 表达式进行判断 -
Uses of WhereBody in cool.scx.data.query.parser
Methods in cool.scx.data.query.parser with parameters of type WhereBody