Commit ad3cdd57 by 徐高华

Merge branch 'feature/获取用户敏感信息' into 'developer'

门店

See merge request !915
parents 74147d74 abff8225
...@@ -22,6 +22,7 @@ import org.springframework.beans.factory.annotation.Autowired; ...@@ -22,6 +22,7 @@ import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Service; import org.springframework.stereotype.Service;
import java.util.*; import java.util.*;
import java.util.stream.Collector;
import java.util.stream.Collectors; import java.util.stream.Collectors;
import static org.slf4j.LoggerFactory.getLogger; import static org.slf4j.LoggerFactory.getLogger;
...@@ -272,7 +273,11 @@ public class StoreRangeServiceImpl implements StoreRangeService { ...@@ -272,7 +273,11 @@ public class StoreRangeServiceImpl implements StoreRangeService {
@Override @Override
public List<String> listStoreGroupIdByWxEnterpriseId(String wxEnterpriseId, String enterpriseId) { public List<String> listStoreGroupIdByWxEnterpriseId(String wxEnterpriseId, String enterpriseId) {
return tabHaobanStoreRelationMapper.listStoreGroupIdByWxEnterpriseId(wxEnterpriseId,enterpriseId); List<TabStoreRange> list = this.tabHaobanStoreRangeMapper.queryByEnterpriseId(wxEnterpriseId,enterpriseId);
if(CollectionUtils.isNotEmpty(list)) {
return list.stream().map(item->item.getRelationId()).collect(Collectors.toList()) ;
}
return null ;
} }
@Override @Override
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment