Commit 4ae7dd55 by huangZW

111

parent 31bb18be
......@@ -140,17 +140,17 @@ public class MemberUnionidRelatedApiServiceImpl implements MemberUnionidRelatedA
ESResponseQuerySingle responseQuery = eSDataDynamicOperationApiService.queryDataSingle(dynamicSearchDTO);
if(null == responseQuery){
log.info("会员不存在1");
return null;
continue;
}
JSONObject res = responseQuery.getRes();
if(res == null){
log.info("会员不存在2");
return null;
continue;
}
String storeId = res.get("storeId") == null?"":res.get("storeId").toString();
if(StringUtils.isEmpty(storeId)){
log.info("会员门店不存在");
return null;
continue;
}
String[] memberStoreIds =storeId.split(" ");
List<String> memberStoreIdList = Arrays.asList(memberStoreIds);
......
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