refactor(statistics): 移除统计记录添加功能

- 删除 AppStatisticsController 中的 addStatistics 接口
- 移除 AppStatisticsServiceImpl 中 addStatistics 方法的实现
- 从 AppStatisticsService 接口中移除 addStatistics 方法声明- 清理 FaceServiceImpl 中调用统计记录添加的代码逻辑
This commit is contained in:
2025-10-31 11:00:38 +08:00
parent cc38d6e095
commit cdeb2e4d5a
4 changed files with 0 additions and 44 deletions

View File

@@ -56,12 +56,4 @@ public class AppStatisticsController {
return statisticsService.userConversionFunnel(query);
}
// 统计数据记录
@PostMapping("/addStatistics")
@IgnoreToken
public ApiResponse<String> addStatistics(@RequestBody StatisticsRecordAddReq req) {
return statisticsService.addStatistics(req);
}
}