Commit f3cbbd55 by guojx

接口改造成一样:接口重复

parent e7d50388
......@@ -704,16 +704,15 @@ public class HmLinkController {
.responsePage(DataHttpUtil.post(StatisticsApolloKeyConstant.data_haoban_link_detail, param));
}
// 加好友列表
/**
* com.gic.haoban.manage.web.controller.hm.HmQrcodeController.wxUserAddLogList 一样
*/
@RequestMapping("statistics/log")
public RestResponse<Object> statisticsDetail(Long linkId, String clerkId, Date startTime, Date endTime,
BasePageInfo basePageInfo) {
WxUserAddLogSearchQDTO qdto = new WxUserAddLogSearchQDTO();
qdto.setLinkId(linkId);
qdto.setClerkId(clerkId);
qdto.setStartTime(startTime);
qdto.setEndTime(endTime);
ServiceResponse<Page<WxUserAddLogDTO>> pageResp = this.wxUserAddLogApiService.page(qdto, basePageInfo);
public RestResponse<Object> statisticsDetail(@RequestBody WxUserAddLogSearchQDTO qdto) {
BasePageInfo pageInfo = new BasePageInfo();
pageInfo.setPageNum(qdto.getPageNum());
pageInfo.setPageSize(qdto.getPageSize());
ServiceResponse<Page<WxUserAddLogDTO>> pageResp = this.wxUserAddLogApiService.page(qdto, pageInfo);
Page<WxUserAddLogVO> retPage = PageHelperUtils.changePageHelperToCurrentPage(pageResp.getResult().getResult(),
WxUserAddLogVO.class);
return RestResponse.successResult(retPage);
......
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