cm.cloud版本升级1.0.1-SNAPSHOT---->1.0.2-SNAPSHOT
This commit is contained in:
parent
4dbe4713bf
commit
7e52595280
2
pom.xml
2
pom.xml
@ -24,7 +24,7 @@
|
||||
<freemarker.version>2.3.28</freemarker.version>
|
||||
<druid.version>1.1.9</druid.version>
|
||||
<uedirot.version>1.4.3.3</uedirot.version>
|
||||
<cm-cloud.version>1.0.1-SNAPSHOT</cm-cloud.version>
|
||||
<cm-cloud.version>1.0.2-SNAPSHOT</cm-cloud.version>
|
||||
</properties>
|
||||
<dependencies>
|
||||
<dependency>
|
||||
|
@ -720,12 +720,11 @@ public class UserLocationServiceImpl extends BaseService implements IUserLocatio
|
||||
Map<String, Object> queryMap = new HashMap<>(4);
|
||||
queryMap.put("communityBossUserId",userId);
|
||||
CommunityBossDTO communityBoss = communityBossService.getCommunityBoss(queryMap);
|
||||
if(communityBoss == null){
|
||||
return new ArrayList<>();
|
||||
}
|
||||
List<String> userIdList = new ArrayList<>();
|
||||
// userIdList.add(userId);
|
||||
userIdList.add(communityBoss.getCommunityBossId());
|
||||
if(communityBoss != null){
|
||||
userIdList.add(communityBoss.getCommunityBossId());
|
||||
}
|
||||
userIdList.add(userId);
|
||||
return userPointsService.listUserPointsByGridService(userIdList);
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user