2021与蓝度共同重构项目,服务端
fix
zhanzhiqin
2022-05-13 9066298c5da93b8a9bff47cd8f73d9ff2cca15b5
ximon-admin/src/main/java/com/sandu/ximon/admin/controller/LightController.java
@@ -104,6 +104,10 @@
        if (deviceCode.isEmpty()) {
            return ResponseUtil.fail("设备编号不能为空");
        }
        int length = deviceCode.length();
        if (length != 24) {
            return ResponseUtil.fail("设备编号长度不正确");
        }
        String url = lightReportDataService.exportList(request,response, deviceCode);
        return ResponseUtil.success(url);
    }