Pārlūkot izejas kodu

Merge branch 'dev' of huangzhanpeng/wlyy_management into dev

chenweida 8 gadi atpakaļ
vecāks
revīzija
9d953d139b

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