Commit 330cc9ef by xugaojun

Merge branch 'fix_03_15' into developer

parents 60650d7d 13374900
......@@ -129,6 +129,10 @@ public class WxEnterpriseApiServiceImpl implements WxEnterpriseApiService {
Page<TabHaobanWxEnterprise> page = wxEnterpriseMapper.list(keyword, enterpriseIds, gicContactFlag, version, enterpriseIdsNotIn);
// 数据转换+白名单过滤
if (Objects.isNull(page) || CollectionUtils.isEmpty(page.getResult())) {
com.gic.api.base.commons.Page<Object> objectPage = new com.gic.api.base.commons.Page<>();
objectPage.setPageSize(pageInfo.getPageSize());
objectPage.setCurrentPage(pageInfo.getPageNum());
objectPage.setResult(Collections.emptyList());
return new com.gic.api.base.commons.Page<>();
}
com.gic.api.base.commons.Page<YwWxEnterpriseDTO> resPage = PageUtil.changePageHelperToCurrentPage(page, YwWxEnterpriseDTO.class);
......
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