|
@@ -96,7 +96,7 @@ public class KdzlServiceImpl implements KdzlService {
|
|
|
String params = "access_token=" + accessToken + "&start=" + start + "&count=" + count;
|
|
String params = "access_token=" + accessToken + "&start=" + start + "&count=" + count;
|
|
|
String response = HttpUtils.sendGet(URL + "/customer/export", params);
|
|
String response = HttpUtils.sendGet(URL + "/customer/export", params);
|
|
|
|
|
|
|
|
- log.info("导出客户响应: {}", response);
|
|
|
|
|
|
|
+ //log.info("导出客户响应: {}", response);
|
|
|
|
|
|
|
|
if (response.isEmpty()) {
|
|
if (response.isEmpty()) {
|
|
|
log.error("导出客户失败,响应为空");
|
|
log.error("导出客户失败,响应为空");
|
|
@@ -131,7 +131,7 @@ public class KdzlServiceImpl implements KdzlService {
|
|
|
} catch (Exception e) {
|
|
} catch (Exception e) {
|
|
|
log.error("导出客户异常", e);
|
|
log.error("导出客户异常", e);
|
|
|
}
|
|
}
|
|
|
- log.info("导出客户完成,共导出客户数量: {}, 数据: {}", customerList.size(), customerList);
|
|
|
|
|
|
|
+ //log.info("导出客户完成,共导出客户数量: {}, 数据: {}", customerList.size(), customerList);
|
|
|
return customerList;
|
|
return customerList;
|
|
|
}
|
|
}
|
|
|
|
|
|