|
@@ -214,7 +214,7 @@ public class ContentPlatformDatastatServiceImpl implements ContentPlatformDatast
|
|
|
return null;
|
|
|
}
|
|
|
Map<Long, ContentPlatformGzhAccount> accountMap = new HashMap<>();
|
|
|
- if (Arrays.asList(1, 3).contains(type)) {
|
|
|
+ if (Arrays.asList(1, 3, 6).contains(type)) {
|
|
|
List<Long> accountIds = datastatList.stream().map(ContentPlatformGzhDataStat::getAccountId).distinct().collect(Collectors.toList());
|
|
|
List<ContentPlatformGzhAccount> accountList = cooperateAccountService.getAccountListByIds(accountIds);
|
|
|
accountMap = accountList.stream().collect(Collectors.toMap(ContentPlatformGzhAccount::getId, a -> a));
|