|
@@ -98,7 +98,7 @@ public class HandleXiaomanData {
|
|
|
XiaomanConfig config = xiaomanConfigService.getConfig();
|
|
|
String token = config.getAccessToken();
|
|
|
List<XiaomanCustomerVo> list = xiaomanCustomerService.getList(new XiaomanCustomerSelectDto());
|
|
|
- Set<Long> collect = list.stream().map(XiaomanCustomerVo::getCustomerId).collect(Collectors.toSet());
|
|
|
+ Set<Long> collect = list.stream().map(XiaomanCustomerVo::getCompanyId).collect(Collectors.toSet());
|
|
|
int pageIndex = 1;
|
|
|
int totalPage;
|
|
|
do {
|
|
@@ -145,7 +145,7 @@ public class HandleXiaomanData {
|
|
|
XiaomanConfig config = xiaomanConfigService.getConfig();
|
|
|
String token = config.getAccessToken();
|
|
|
List<XiaomanCustomerVo> list = xiaomanCustomerService.getList(new XiaomanCustomerSelectDto());
|
|
|
- Set<Long> collect = list.stream().map(XiaomanCustomerVo::getCustomerId).collect(Collectors.toSet());
|
|
|
+ Set<Long> collect = list.stream().map(XiaomanCustomerVo::getCompanyId).collect(Collectors.toSet());
|
|
|
int pageIndex = 1;
|
|
|
int totalPage;
|
|
|
do {
|