From 3a41c756368cd2d873df757b1ba2fc0ccbe2b745 Mon Sep 17 00:00:00 2001 From: lanyuanxiaoyao Date: Thu, 21 Aug 2025 16:12:26 +0800 Subject: [PATCH] =?UTF-8?q?docs:=20=E6=9B=B4=E6=96=B0=E6=B3=A8=E9=87=8A?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../service/template/service/SimpleServiceSupport.java | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) 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: 指定字段大于等于条件的映射(字段名 -> 值)