|
@@ -208,9 +208,9 @@ public class HtAnalogDataServiceImpl extends AbstractCrudService<HtAnalogDataMap
|
|
|
dateList.add(DateUtils.getDay(setDays));
|
|
|
}
|
|
|
List<CommonIcoVO> list = new ArrayList<>();
|
|
|
- list.add(CommonIcoVO.builder().name("MAX").list(maxList).listDate(dateList).build());
|
|
|
- list.add(CommonIcoVO.builder().name("MIN").list(minList).listDate(dateList).build());
|
|
|
- list.add(CommonIcoVO.builder().name("AVG").list(avgList).listDate(dateList).build());
|
|
|
+ list.add(CommonIcoVO.builder().name("最大值").list(maxList).listDate(dateList).build());
|
|
|
+ list.add(CommonIcoVO.builder().name("最小值").list(minList).listDate(dateList).build());
|
|
|
+ list.add(CommonIcoVO.builder().name("平均值").list(avgList).listDate(dateList).build());
|
|
|
return list;
|
|
|
}
|
|
|
|