类型
This commit is contained in:
@@ -91,7 +91,7 @@ public class HyExhibitionDAO {
|
|||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
public Map<String,ExhibitionStatisticsDTO> exhibitionStatisticsMap(List<Integer> list) {
|
public Map<Integer,ExhibitionStatisticsDTO> exhibitionStatisticsMap(List<Integer> list) {
|
||||||
if (CollectionUtils.isEmpty(list)) {
|
if (CollectionUtils.isEmpty(list)) {
|
||||||
return new HashMap<>(4);
|
return new HashMap<>(4);
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -13,7 +13,7 @@ public class ExhibitionStatisticsDTO {
|
|||||||
/**
|
/**
|
||||||
* 展会code
|
* 展会code
|
||||||
*/
|
*/
|
||||||
private String exhibitionId;
|
private Integer exhibitionId;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* 报名人数
|
* 报名人数
|
||||||
|
|||||||
@@ -277,7 +277,7 @@ public class ExhibitionServiceImpl implements ExhibitionService {
|
|||||||
.collect(Collectors.toMap(EnterpriseUserDO::getUserId,
|
.collect(Collectors.toMap(EnterpriseUserDO::getUserId,
|
||||||
u -> new CollaboratorVO(u.getUserId(), u.getName())));
|
u -> new CollaboratorVO(u.getUserId(), u.getName())));
|
||||||
|
|
||||||
Map<String, ExhibitionStatisticsDTO> StatisticsMap = hyExhibitionDAO.exhibitionStatisticsMap(codeList);
|
Map<Integer, ExhibitionStatisticsDTO> StatisticsMap = hyExhibitionDAO.exhibitionStatisticsMap(codeList);
|
||||||
|
|
||||||
exhibitionList.forEach(x->{
|
exhibitionList.forEach(x->{
|
||||||
MyExhibitionVO myExhibitionVO = new MyExhibitionVO();
|
MyExhibitionVO myExhibitionVO = new MyExhibitionVO();
|
||||||
|
|||||||
Reference in New Issue
Block a user