2021与蓝度共同重构项目,服务端
fix
zhanzhiqin
2022-05-27 dd15d2d4407c4ace0cfad1c9d5f00ed0ea49557f
ximon-admin/src/main/java/com/sandu/ximon/admin/controller/GetListOnBindingController.java
@@ -114,7 +114,7 @@
    @GetMapping("/getLedPlayerEntityList")
    public ResponseVO<Object> getLedPlayerEntityList() {
        List<LedPlayerEntity> list = SpringContextHolder.getBean(LedPlayerEntityService.class).
                ledPlayerEntityList(null, null);
                ledPlayerEntityList(null, null, null, null);
        List<Map> mapList = new ArrayList<>();
        Map map;
@@ -161,7 +161,7 @@
    @GetMapping("/getNledProgeamList")
    public ResponseVO<Object> getNledProgeamList() {
        List<LEDProgram> ledPrograms = ledProgramService.listProgram(null, null);
        List<LEDProgram> ledPrograms = ledProgramService.listProgram(null, null,null,null);
        List<Map> mapList = new ArrayList<>();
        Map map;
        for (LEDProgram bean : ledPrograms) {
@@ -183,7 +183,7 @@
    @GetMapping("/getSledList")
    public ResponseVO<Object> getSledList() {
        List<PoleLightemitEntity> poleLightemitEntities = sLedService.listLed(null, false);
        List<PoleLightemitEntity> poleLightemitEntities = sLedService.listLed(null, null, null, false);
        List<Map> mapList = new ArrayList<>();
        Map map;
        for (PoleLightemitEntity bean : poleLightemitEntities) {
@@ -211,9 +211,9 @@
        List<MonitorBo> monitorBos;
        //超管
        if (SecurityUtils.getClientId() == null) {
            monitorBos = monitorMapper.listMonitorDeviceSerial1(null, null, 2,null);
            monitorBos = monitorMapper.listMonitorDeviceSerial1(null, null, 2, null);
        } else {
            monitorBos = monitorMapper.listMonitorDeviceSerial1(SecurityUtils.getUserId(), null, 2,null);
            monitorBos = monitorMapper.listMonitorDeviceSerial1(SecurityUtils.getUserId(), null, 2, null);
        }
        List<Map> mapList = new ArrayList<>();
        Map map;