瀏覽代碼

基卫数据处理[{}]

hzp 8 年之前
父節點
當前提交
1e38250024
共有 1 個文件被更改,包括 6 次插入6 次删除
  1. 6 6
      patient-co-wlyy/src/main/java/com/yihu/wlyy/service/third/jw/JwSmjkService.java

+ 6 - 6
patient-co-wlyy/src/main/java/com/yihu/wlyy/service/third/jw/JwSmjkService.java

@ -94,9 +94,9 @@ public class JwSmjkService {
                ex.printStackTrace();
            }
            if(re.equals("[{}]"))
            if(re.contains("[{}]"))
            {
                re = "";
                re = re.replace("[{}]","[]");
            }
            return re;
@ -234,9 +234,9 @@ public class JwSmjkService {
                    throw new Exception("null response.");
                }
                if(re.equals("[{}]"))
                if(re.contains("[{}]"))
                {
                    re = "";
                    re = re.replace("[{}]","[]");
                }
                return re;
@ -282,9 +282,9 @@ public class JwSmjkService {
                throw new Exception("null response.");
            }
            if(result.equals("[{}]"))
            if(result.contains("[{}]"))
            {
                result = "";
                result = result.replace("[{}]","[]");
            }
            return result;