This commit is contained in:
shuo.wang
2025-07-04 10:02:02 +08:00
parent a357730c1a
commit 7c86693a6f
2 changed files with 4 additions and 2 deletions

View File

@@ -65,7 +65,7 @@ public class StoreDao {
}
public List<MiniShopsResponse> getSubStoreByRegionIdsAndMobile(List<String> regionIdList, String mobile,String storeName,String storeNum) {
if(CollectionUtils.isEmpty(regionIdList)&&StringUtils.isBlank(mobile)) {
if(StringUtils.isBlank(mobile)) {
return new ArrayList<>();
}
return storeMapper.getSubStoreByRegionIdsAndMobile(regionIdList,mobile,storeName,storeNum);