|
@@ -126,8 +126,8 @@ public class FeedbackServiceImpl extends ServiceImpl<IFeedbackMapper, Feedback>
|
|
|
HashMap<Integer,BigDecimal> map = new HashMap<>();
|
|
|
List<GroupByAvg> list = this.getBaseMapper().scoreAugHardware();
|
|
|
List<GroupByAvg> list2 = this.getBaseMapper().scoreAugSoftware();
|
|
|
- list.forEach(e ->map.put(e.getId(),e.getAvg()));
|
|
|
- list2.forEach(e ->map.put(e.getId(),e.getAvg()));
|
|
|
+ list.forEach(e ->map.put(e.getId(),e.getAvgCount()));
|
|
|
+ list2.forEach(e ->map.put(e.getId(),e.getAvgCount()));
|
|
|
|
|
|
List<FeedbackOption> options = feedbackOptionService.list();
|
|
|
|