vince
2024-01-16 5f92b2034f84caeab9cb6efc61ecbe22407935b4
src/main/java/com/fzzy/gateway/service/GatewayDeviceTestPR.java
@@ -290,7 +290,6 @@
    @Expose
    public String ajaxTestWeight(Map<String,Object> data) throws Exception {
        double weigh = (double) data.get("weight");
        double deviceId = (double) data.get("deviceId");
        List<GatewayDevice> devices = listAll();
@@ -401,5 +400,23 @@
        log.info("-----------test-------------------");
        return "SUCCESS";
    }
    /**
     *
     * gatewayDeviceTestPR#testIde
     * 测试下行分机
     * @param data
     * @return
     */
    @Expose
    public String testIde(Map<String,Object> data) throws Exception {
        String deviceId = (String) data.get("deviceId");
        String bizType = (String) data.get("bizType");
        log.info("-----------下行分机调试-设备={},事件={}",deviceId,bizType);
        return "SUCCESS";
    }
}