From 982313135d1c239fe3b20e4c5664781f92d40aca Mon Sep 17 00:00:00 2001 From: xin <1099200748@qq.com> Date: Thu, 31 Jul 2025 17:17:39 +0800 Subject: [PATCH] Merge branch 'master' into xin --- oying-system/src/main/java/com/oying/modules/pc/store/mapper/StoreMapper.java | 4 ++++ 1 files changed, 4 insertions(+), 0 deletions(-) diff --git a/oying-system/src/main/java/com/oying/modules/pc/store/mapper/StoreMapper.java b/oying-system/src/main/java/com/oying/modules/pc/store/mapper/StoreMapper.java index ae21034..25e8d41 100644 --- a/oying-system/src/main/java/com/oying/modules/pc/store/mapper/StoreMapper.java +++ b/oying-system/src/main/java/com/oying/modules/pc/store/mapper/StoreMapper.java @@ -10,6 +10,8 @@ import org.apache.ibatis.annotations.Mapper; import org.apache.ibatis.annotations.Param; +import java.io.Serializable; +import java.util.Collection; import java.util.List; /** @@ -35,4 +37,6 @@ List<Store> queryUserStores(@Param("userId") Long userId); + List<Store> queryByIds(@Param("ids") Collection<? extends Serializable> idList); + } -- Gitblit v1.9.3