fix:涉密资产统计

pg_adapter
wangxy 8 months ago
parent 539d225f45
commit 1dddcf6290

@ -21,6 +21,7 @@ import org.springframework.web.bind.annotation.*;
import java.util.ArrayList; import java.util.ArrayList;
import java.util.List; import java.util.List;
import java.util.Objects;
import java.util.concurrent.atomic.AtomicReference; import java.util.concurrent.atomic.AtomicReference;
import java.util.stream.Collectors; import java.util.stream.Collectors;
@ -101,4 +102,34 @@ public class SysNetworknumController extends BaseController {
return AjaxResult.success(obj); return AjaxResult.success(obj);
} }
/**
*
*
* @return
*/
@PostMapping("/countInfo")
@ResponseBody
public AjaxResult countInfo() {
SysDictData sysDictData = new SysDictData();
sysDictData.setDictType("sys_file_miji");
List<SysDictData> smType = dictDataService.selectDictDataList(sysDictData);
List<String> list = smType.stream().map(SysDictData::getDictLabel).collect(Collectors.toList());
List<Long> yAxisData = new ArrayList<>();
smType.forEach(xAxis -> {
AtomicReference<Long> 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);
}
} }

@ -58,4 +58,7 @@ public interface TdPropertyNetMapper
* @return * @return
*/ */
public int deleteTdPropertyNetByNetIds(String[] netIds); public int deleteTdPropertyNetByNetIds(String[] netIds);
public Integer selectCountMi(String netMiji);
} }

@ -58,4 +58,7 @@ public interface ITdPropertyNetService
* @return * @return
*/ */
public int deleteTdPropertyNetByNetId(String netId); public int deleteTdPropertyNetByNetId(String netId);
public Integer selectCountMi(String netMiji);
} }

@ -91,4 +91,9 @@ public class TdPropertyNetServiceImpl implements ITdPropertyNetService
{ {
return tdPropertyNetMapper.deleteTdPropertyNetByNetId(netId); return tdPropertyNetMapper.deleteTdPropertyNetByNetId(netId);
} }
@Override
public Integer selectCountMi(String netMiji) {
return tdPropertyNetMapper.selectCountMi(netMiji);
}
} }

@ -101,4 +101,11 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
</foreach> </foreach>
</delete> </delete>
<select id="selectCountMi" parameterType="String" resultType="Integer">
SELECT sum(terminal_num) as total FROM td_property_net where net_miji=#{netMiji}
</select>
</mapper> </mapper>
Loading…
Cancel
Save