| | |
| | | |
| | | import javax.annotation.Resource; |
| | | import java.math.BigDecimal; |
| | | import java.util.ArrayList; |
| | | import java.util.Date; |
| | | import java.util.List; |
| | | import java.util.*; |
| | | import java.util.function.Function; |
| | | import java.util.stream.Collectors; |
| | | |
| | | import static com.baomidou.mybatisplus.core.toolkit.ObjectUtils.isNotEmpty; |
| | | import static com.baomidou.mybatisplus.core.toolkit.ObjectUtils.isNull; |
| | |
| | | } |
| | | return 3; |
| | | } |
| | | |
| | | /** |
| | | * 统计红黄绿码 |
| | | * @return |
| | | */ |
| | | public R selectColorMarkGroup(){ |
| | | //所有 |
| | | List<ComActAcidColorChartsVO> comActAcidColorChartsVOS = this.baseMapper.selectColorMarkGroup(); |
| | | int all = comActAcidColorChartsVOS.stream().mapToInt(ComActAcidColorChartsVO::getCountNum).sum(); |
| | | for (ComActAcidColorChartsVO comActAcidColorChartsVO : comActAcidColorChartsVOS) { |
| | | if (0!=all){ |
| | | BigDecimal countNum = new BigDecimal(comActAcidColorChartsVO.getCountNum()); |
| | | BigDecimal allDecimal = new BigDecimal(all); |
| | | BigDecimal percent = countNum.divide(allDecimal,2, BigDecimal.ROUND_HALF_DOWN); |
| | | comActAcidColorChartsVO.setPercent(percent); |
| | | } |
| | | } |
| | | Map<String, ComActAcidColorChartsVO> circleMap = comActAcidColorChartsVOS.stream().collect(Collectors.toMap(ComActAcidColorChartsVO::getCountName, Function.identity())); |
| | | |
| | | //月份 |
| | | List<ComActAcidColorChartsVO> comActAcidColorChartsVOS1 = this.baseMapper.selectColorMarkGroupByMonth(); |
| | | Map<String, List<ComActAcidColorChartsVO>> colorMap = comActAcidColorChartsVOS1.stream().collect(Collectors.groupingBy(ComActAcidColorChartsVO::getColorMark)); |
| | | |
| | | |
| | | |
| | | Map<String,Object> retMap = new HashMap<>(); |
| | | retMap.put("circleMap",circleMap); |
| | | |
| | | return R.ok(); |
| | | } |
| | | } |