|
|
@@ -3,6 +3,7 @@ package com.ytpm.adage.feign;
|
|
|
import com.ytpm.agent.param.AuditCheckParam;
|
|
|
import com.ytpm.agent.view.AgentAdGroupStaticsVO;
|
|
|
import com.ytpm.agent.view.AgentTopCountView;
|
|
|
+import com.ytpm.agent.view.UserAdStaticsVo;
|
|
|
import com.ytpm.app.model.YtAppDefaultConfig;
|
|
|
import com.ytpm.app.model.YtDyzAdRecord;
|
|
|
import com.ytpm.app.model.YtDyzUser;
|
|
|
@@ -94,6 +95,12 @@ public interface AdageFeign {
|
|
|
@GetMapping("/ad/getAgentProfit")
|
|
|
List<AgentAdGroupStaticsVO> getAgentProfit(@RequestParam(name = "appIds")String appIds);
|
|
|
|
|
|
+ /**
|
|
|
+ * 查询用户广告收益统计广告数据
|
|
|
+ */
|
|
|
+ @GetMapping("/ad/getUerAdStatics")
|
|
|
+ List<UserAdStaticsVo> getUerAdStatics(@RequestParam(name = "appId")String appId, @RequestParam(name = "userId")String userId);
|
|
|
+
|
|
|
@PostMapping("/user/getRevenueByTime")
|
|
|
BigDecimal getRevenueByTime(@RequestBody YtAppUserListParam param);
|
|
|
|