From 6e0a83c55db4bae4d23a4c281946bda1d610f678 Mon Sep 17 00:00:00 2001
From: zepengdev <lzpsmith@outlook.com>
Date: Sat, 14 Jun 2025 12:32:31 +0800
Subject: [PATCH] 补充前次提交的遗漏内容,前次提交SHA:a6f4dd

---
 oying-system/src/main/resources/mapper/pc/store/StoreCategoryMapper.xml |    6 ++++++
 1 files changed, 6 insertions(+), 0 deletions(-)

diff --git a/oying-system/src/main/resources/mapper/pc/store/StoreCategoryMapper.xml b/oying-system/src/main/resources/mapper/pc/store/StoreCategoryMapper.xml
index f79f66c..4c1901d 100644
--- a/oying-system/src/main/resources/mapper/pc/store/StoreCategoryMapper.xml
+++ b/oying-system/src/main/resources/mapper/pc/store/StoreCategoryMapper.xml
@@ -25,9 +25,15 @@
         <include refid="Base_Column_List"/>
         from pc_store_category
         <where>
+            <if test="criteria.categoryId != null ">
+                and category_id = #{criteria.categoryId}
+            </if>
             <if test="criteria.storeId != null ">
                 and store_id = #{criteria.storeId}
             </if>
+            <if test="criteria.blurry != null and criteria.blurry != ''">
+                and name like concat('%',#{criteria.blurry},'%')
+            </if>
             <if test="criteria.level != null ">
                 and level = #{criteria.level}
             </if>

--
Gitblit v1.9.3