Commit 2933892d by 徐高华

去掉渠道

parent 908a4c99
...@@ -20,6 +20,7 @@ public class WxUserAddLogApiServiceImpl implements WxUserAddLogApiService { ...@@ -20,6 +20,7 @@ public class WxUserAddLogApiServiceImpl implements WxUserAddLogApiService {
private WxUserAddLogService wxUserAddLogService ; private WxUserAddLogService wxUserAddLogService ;
@Override @Override
public ServiceResponse<Page<WxUserAddLogDTO>> page(WxUserAddLogSearchQDTO qdto, BasePageInfo pageInfo) { public ServiceResponse<Page<WxUserAddLogDTO>> page(WxUserAddLogSearchQDTO qdto, BasePageInfo pageInfo) {
qdto.setAddChannel(null);
Page<WxUserAddLogBO> page = this.wxUserAddLogService.page(qdto, pageInfo) ; Page<WxUserAddLogBO> page = this.wxUserAddLogService.page(qdto, pageInfo) ;
Page<WxUserAddLogDTO> resultPage = PageHelperUtils.changePageToCurrentPage(page, WxUserAddLogDTO.class); Page<WxUserAddLogDTO> resultPage = PageHelperUtils.changePageToCurrentPage(page, WxUserAddLogDTO.class);
return ServiceResponse.success(resultPage); return ServiceResponse.success(resultPage);
......
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