Commit 6cd05a64 by guojx

活码链接数据统计接口入参调整

parent 6a6af4e7
......@@ -600,7 +600,7 @@ public class HmLinkController {
// 链接统计
@RequestMapping("statistics/total")
public RestResponse<Object> statistics(Long linkId) {
public RestResponse<Object> statistics(@RequestBody Long linkId) {
WebLoginDTO loginUser = AuthWebRequestUtil.getLoginUser();
JSONObject jsonObject = new JSONObject();
......@@ -685,7 +685,7 @@ public class HmLinkController {
WebLoginDTO loginUser = AuthWebRequestUtil.getLoginUser();
qo.getInFields().setEnterpriseId(loginUser.getEnterpriseId());
return DataStatisticsParamUtils
.responsePage(DataHttpUtil.post(StatisticsApolloKeyConstant.data_haoban_link_detail, JSON.toJSONString(qo)));
.responsePage(DataHttpUtil.post(StatisticsApolloKeyConstant.data_haoban_link_detail, qo));
}
/**
......
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