lin 4 years ago
parent
commit
f2f2d77bb2

+ 1 - 1
smart-city-platform/src/main/java/com/bz/smart_city/service/udip/EasylinkinUtils.java

@@ -19,7 +19,7 @@ public class EasylinkinUtils {
         Map<String,Object> resultMap = lora188Parser.protocolToRawData(mapData);
         Integer status = (Integer) resultMap.get("status");
         String data = "";
-        if(status == 0){
+        if(status == 1){
             data = (String) resultMap.get("data");
         }else {
             throw new ServiceException(-900, "协议解析错误");