|
|
|
@ -39,6 +39,7 @@ public class ChsYbHcxxGgService extends ServiceImpl<YbHcxxGgMapper, YbHcxxGgEnti
|
|
|
|
|
page.setCurrent(pageNum);
|
|
|
|
|
QueryWrapper<YbHcxxEntity> queryWrapper = new QueryWrapper<>();
|
|
|
|
|
queryWrapper.select("specificationCode");
|
|
|
|
|
// queryWrapper.ge("specificationCode","C0314010870100110845");
|
|
|
|
|
queryWrapper.orderByAsc("specificationCode");
|
|
|
|
|
ybHcxxMapper.selectPage(page, queryWrapper);
|
|
|
|
|
|
|
|
|
@ -54,6 +55,7 @@ public class ChsYbHcxxGgService extends ServiceImpl<YbHcxxGgMapper, YbHcxxGgEnti
|
|
|
|
|
long pageTotal = total/pageSize + 1;
|
|
|
|
|
for (int i = 2; i <= pageTotal ; i++) {
|
|
|
|
|
page.setCurrent(i);
|
|
|
|
|
System.out.println("更新数据库的YbHcxxGg列表数据,总页数:"+ pageTotal+";当前总进度:"+i);
|
|
|
|
|
ybHcxxMapper.selectPage(page, queryWrapper);
|
|
|
|
|
List<YbHcxxEntity> records2 = page.getRecords();
|
|
|
|
|
records2.forEach( x->{
|
|
|
|
@ -76,11 +78,12 @@ public class ChsYbHcxxGgService extends ServiceImpl<YbHcxxGgMapper, YbHcxxGgEnti
|
|
|
|
|
YbHcxxGgResponse ybHcxxGgResponse = ybChsHttpClient.getYbHcxxGgList(specificationCode, pageNum, pageSize);
|
|
|
|
|
Integer total = ybHcxxGgResponse.getTotal();
|
|
|
|
|
//处理第一批数据
|
|
|
|
|
System.out.println("更新数据库的YbHcxxGg列表数据:"+specificationCode + "第"+ 1+"页");
|
|
|
|
|
processUpdates(ybHcxxGgResponse);
|
|
|
|
|
//处理后续数据
|
|
|
|
|
if (total>pageNum){
|
|
|
|
|
for (int i = 2; i <= total ; i++) {
|
|
|
|
|
System.out.println("更新数据库的YbHcxxGg列表数据"+ i);
|
|
|
|
|
System.out.println("更新数据库的YbHcxxGg列表数据:"+specificationCode + "第"+ i+"页");
|
|
|
|
|
processUpdates(ybChsHttpClient.getYbHcxxGgList(specificationCode,i, pageSize));
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
@ -94,6 +97,7 @@ public class ChsYbHcxxGgService extends ServiceImpl<YbHcxxGgMapper, YbHcxxGgEnti
|
|
|
|
|
private void processUpdates(YbHcxxGgResponse ybHcxxGgResponse) {
|
|
|
|
|
List<YbHcxxGgResponse.RowsDTO> list = ybHcxxGgResponse.getRows();
|
|
|
|
|
List<YbHcxxGgEntity> ybHcxxGgEntities = BeanUtil.copyToList(list, YbHcxxGgEntity.class);
|
|
|
|
|
if (CollectionUtil.isNotEmpty(ybHcxxGgEntities))
|
|
|
|
|
ybHcxxGgMapper.batchSaveOrUpdateBySpecificationCode(ybHcxxGgEntities);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|