|
@@ -56,6 +56,13 @@ public class UserAnalyseController {
|
|
return R.ok(userAnalyseService.saveMktStatNewUser(data));
|
|
return R.ok(userAnalyseService.saveMktStatNewUser(data));
|
|
}
|
|
}
|
|
|
|
|
|
|
|
+ @Inner
|
|
|
|
+ @PostMapping("/new/update")
|
|
|
|
+ @Operation(summary = "修改新增用户信息")
|
|
|
|
+ R<Boolean> updateMktStatNewUser(@RequestBody MktStatNewUser data){
|
|
|
|
+ return R.ok(userAnalyseService.updateMktStatNewUser(data));
|
|
|
|
+ }
|
|
|
|
+
|
|
@PostMapping("/new/trend")
|
|
@PostMapping("/new/trend")
|
|
@Operation(summary = "查询新增趋势")
|
|
@Operation(summary = "查询新增趋势")
|
|
public R<GetNewUserTrendVO> getNewUserTrend(@Valid @RequestBody UserAnalyseQueryBaseDTO reqDto) {
|
|
public R<GetNewUserTrendVO> getNewUserTrend(@Valid @RequestBody UserAnalyseQueryBaseDTO reqDto) {
|
|
@@ -168,6 +175,13 @@ public class UserAnalyseController {
|
|
return R.ok(userAnalyseService.saveMktStatActiveUser(data));
|
|
return R.ok(userAnalyseService.saveMktStatActiveUser(data));
|
|
}
|
|
}
|
|
|
|
|
|
|
|
+ @Inner
|
|
|
|
+ @PostMapping("/active/update")
|
|
|
|
+ @Operation(summary = "修改活跃用户信息")
|
|
|
|
+ R<Boolean> updateMktStatActiveUser(@RequestBody MktStatActiveUser data){
|
|
|
|
+ return R.ok(userAnalyseService.updateMktStatActiveUser(data));
|
|
|
|
+ }
|
|
|
|
+
|
|
@PostMapping("/active/trend")
|
|
@PostMapping("/active/trend")
|
|
@Operation(summary = "查询活跃趋势")
|
|
@Operation(summary = "查询活跃趋势")
|
|
public R<GetNewUserTrendVO> getActiveTrend(@Valid @RequestBody UserAnalyseQueryBaseDTO reqDto) {
|
|
public R<GetNewUserTrendVO> getActiveTrend(@Valid @RequestBody UserAnalyseQueryBaseDTO reqDto) {
|