Commit f811781e by 徐高华

test

parent 06b4f2b2
...@@ -402,7 +402,7 @@ public class MemberUnionidRelatedApiServiceImpl implements MemberUnionidRelatedA ...@@ -402,7 +402,7 @@ public class MemberUnionidRelatedApiServiceImpl implements MemberUnionidRelatedA
if(null != obj) { if(null != obj) {
String str = obj.toString() ; String str = obj.toString() ;
String corpid = dto.getCorpid() ; String corpid = dto.getCorpid() ;
if(str.contains(corpid)) { if(StringUtils.isNotBlank(corpid) && str.contains(corpid)) {
flag = true ; flag = true ;
} }
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment