Commit 221f22e2 by 徐高华

统计

parent 63fda2f6
......@@ -495,7 +495,9 @@ public class HmLinkController {
HmLinkStatisticsVO vo = new HmLinkStatisticsVO();
List<HmLinkStatisticsVO> list = new ArrayList<>();
list.add(vo);
return RestResponse.successResult(list);
Page<HmLinkStatisticsVO> page = new Page<>();
page.setResult(list);
return RestResponse.successResult(page);
}
@RequestMapping("statistics/page")
......
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