diff --git a/src/main/java/com/lanyuanxiaoyao/service/template/service/SimpleServiceSupport.java b/src/main/java/com/lanyuanxiaoyao/service/template/service/SimpleServiceSupport.java index 0104cbb..c564248 100644 --- a/src/main/java/com/lanyuanxiaoyao/service/template/service/SimpleServiceSupport.java +++ b/src/main/java/com/lanyuanxiaoyao/service/template/service/SimpleServiceSupport.java @@ -45,8 +45,12 @@ import org.springframework.data.domain.Sort; *
  • notEmpty: 指定字段值不为空的条件列表
  • *
  • equal: 指定字段值相等的条件映射(字段名 -> 值)
  • *
  • notEqual: 指定字段值不相等的条件映射(字段名 -> 值)
  • - *
  • like: 指定字段模糊匹配的条件映射(字段名 -> 匹配值)
  • - *
  • notLike: 指定字段不模糊匹配的条件映射(字段名 -> 匹配值)
  • + *
  • contain: 指定字段包含指定字符串的条件映射(字段名 -> 包含值)
  • + *
  • notContain: 指定字段不包含指定字符串的条件映射(字段名 -> 不包含值)
  • + *
  • startWith: 指定字段以指定字符串开头的条件映射(字段名 -> 开头值)
  • + *
  • notStartWith: 指定字段不以指定字符串开头的条件映射(字段名 -> 不开头值)
  • + *
  • endWith: 指定字段以指定字符串结尾的条件映射(字段名 -> 结尾值)
  • + *
  • notEndWith: 指定字段不以指定字符串结尾的条件映射(字段名 -> 不结尾值)
  • *
  • great: 指定字段大于条件的映射(字段名 -> 值)
  • *
  • less: 指定字段小于条件的映射(字段名 -> 值)
  • *
  • greatEqual: 指定字段大于等于条件的映射(字段名 -> 值)