2021与蓝度共同重构项目,服务端
liuhaonan
2022-05-13 3be7f43f9d7c1e0691407b1a3470186369b87bd9
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);
    }