exhibitionCode 去掉
This commit is contained in:
@@ -259,9 +259,9 @@ public class ExhibitionServiceImpl implements ExhibitionService {
|
||||
List<MyExhibitionVO> list = new ArrayList<>();
|
||||
//查询协作人
|
||||
Set<String> collaboratorsSet = new HashSet();
|
||||
List<String> codeList = new ArrayList<>();
|
||||
List<Integer> codeList = new ArrayList<>();
|
||||
exhibitionList.forEach(x->{
|
||||
codeList.add(x.getExhibitionCode());
|
||||
codeList.add(x.getId());
|
||||
if (StringUtils.isNotEmpty(x.getCollaborators())){
|
||||
List<String> userIdList = Arrays.asList(x.getCollaborators().substring(1).split(Constants.COMMA));
|
||||
collaboratorsSet.addAll(userIdList);
|
||||
@@ -289,7 +289,7 @@ public class ExhibitionServiceImpl implements ExhibitionService {
|
||||
});
|
||||
myExhibitionVO.setCollaborators(coll);
|
||||
}
|
||||
ExhibitionStatisticsDTO statistics = StatisticsMap.getOrDefault(x.getExhibitionCode(), new ExhibitionStatisticsDTO());
|
||||
ExhibitionStatisticsDTO statistics = StatisticsMap.getOrDefault(x.getId(), new ExhibitionStatisticsDTO());
|
||||
myExhibitionVO.setSignUpCount(statistics.getSignUpCount());
|
||||
myExhibitionVO.setCheckInCount(statistics.getCheckInCount());
|
||||
myExhibitionVO.setFormFillCount(statistics.getFormFillCount());
|
||||
|
||||
Reference in New Issue
Block a user