diff --git a/ruoyi-admin/src/main/java/com/ruoyi/web/controller/system/count/SysNetworknumController.java b/ruoyi-admin/src/main/java/com/ruoyi/web/controller/system/count/SysNetworknumController.java index 8fab6ed..1be680c 100644 --- a/ruoyi-admin/src/main/java/com/ruoyi/web/controller/system/count/SysNetworknumController.java +++ b/ruoyi-admin/src/main/java/com/ruoyi/web/controller/system/count/SysNetworknumController.java @@ -21,6 +21,7 @@ import org.springframework.web.bind.annotation.*; import java.util.ArrayList; import java.util.List; +import java.util.Objects; import java.util.concurrent.atomic.AtomicReference; import java.util.stream.Collectors; @@ -101,4 +102,34 @@ public class SysNetworknumController extends BaseController { return AjaxResult.success(obj); } + + /** + * + * 网络终端数统计 + * @return + */ + + @PostMapping("/countInfo") + @ResponseBody + public AjaxResult countInfo() { + SysDictData sysDictData = new SysDictData(); + sysDictData.setDictType("sys_file_miji"); + List smType = dictDataService.selectDictDataList(sysDictData); + List list = smType.stream().map(SysDictData::getDictLabel).collect(Collectors.toList()); + List yAxisData = new ArrayList<>(); + smType.forEach(xAxis -> { + AtomicReference yAxis = new AtomicReference<>(0L); + Integer count = tdPropertyNetService.selectCountMi(xAxis.getDictValue()); + if(Objects.isNull(count)){ + count = 0; + } + yAxis.set(Long.valueOf(count)); + yAxisData.add(yAxis.get()); + }); + JSONObject obj = new JSONObject(); + obj.put("xAxisData", list.toArray()); + obj.put("yAxisData", yAxisData); + return AjaxResult.success(obj); + } + } diff --git a/ruoyi-system/src/main/java/com/ruoyi/system/mapper/TdPropertyNetMapper.java b/ruoyi-system/src/main/java/com/ruoyi/system/mapper/TdPropertyNetMapper.java index 1eb6e15..522d923 100644 --- a/ruoyi-system/src/main/java/com/ruoyi/system/mapper/TdPropertyNetMapper.java +++ b/ruoyi-system/src/main/java/com/ruoyi/system/mapper/TdPropertyNetMapper.java @@ -58,4 +58,7 @@ public interface TdPropertyNetMapper * @return 结果 */ public int deleteTdPropertyNetByNetIds(String[] netIds); + + + public Integer selectCountMi(String netMiji); } diff --git a/ruoyi-system/src/main/java/com/ruoyi/system/service/ITdPropertyNetService.java b/ruoyi-system/src/main/java/com/ruoyi/system/service/ITdPropertyNetService.java index bc5feb2..1e9291d 100644 --- a/ruoyi-system/src/main/java/com/ruoyi/system/service/ITdPropertyNetService.java +++ b/ruoyi-system/src/main/java/com/ruoyi/system/service/ITdPropertyNetService.java @@ -58,4 +58,7 @@ public interface ITdPropertyNetService * @return 结果 */ public int deleteTdPropertyNetByNetId(String netId); + + + public Integer selectCountMi(String netMiji); } diff --git a/ruoyi-system/src/main/java/com/ruoyi/system/service/impl/TdPropertyNetServiceImpl.java b/ruoyi-system/src/main/java/com/ruoyi/system/service/impl/TdPropertyNetServiceImpl.java index 118e15d..8ad9ead 100644 --- a/ruoyi-system/src/main/java/com/ruoyi/system/service/impl/TdPropertyNetServiceImpl.java +++ b/ruoyi-system/src/main/java/com/ruoyi/system/service/impl/TdPropertyNetServiceImpl.java @@ -91,4 +91,9 @@ public class TdPropertyNetServiceImpl implements ITdPropertyNetService { return tdPropertyNetMapper.deleteTdPropertyNetByNetId(netId); } + + @Override + public Integer selectCountMi(String netMiji) { + return tdPropertyNetMapper.selectCountMi(netMiji); + } } diff --git a/ruoyi-system/src/main/resources/mapper/system/TdPropertyNetMapper.xml b/ruoyi-system/src/main/resources/mapper/system/TdPropertyNetMapper.xml index d09a349..7a5f98a 100644 --- a/ruoyi-system/src/main/resources/mapper/system/TdPropertyNetMapper.xml +++ b/ruoyi-system/src/main/resources/mapper/system/TdPropertyNetMapper.xml @@ -101,4 +101,11 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" + + + + + \ No newline at end of file