Commit 81ff8c16 by guojx

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

parent 6cd05a64
......@@ -600,12 +600,12 @@ public class HmLinkController {
// 链接统计
@RequestMapping("statistics/total")
public RestResponse<Object> statistics(@RequestBody Long linkId) {
public RestResponse<Object> statistics(@RequestBody HmLinkChartQO qo) {
WebLoginDTO loginUser = AuthWebRequestUtil.getLoginUser();
JSONObject jsonObject = new JSONObject();
jsonObject.put("enterpriseId", loginUser.getEnterpriseId());
jsonObject.put("linkId", linkId);
jsonObject.put("linkId", qo.getLinkId());
JSONObject param = DataStatisticsParamUtils.getParamNoPage(jsonObject);
// HmLinkStatisticsVO vo = new HmLinkStatisticsVO();
return DataStatisticsParamUtils
......
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