You've already forked FrameTour-BE
refactor(statistics): 移除统计记录添加功能
- 删除 AppStatisticsController 中的 addStatistics 接口 - 移除 AppStatisticsServiceImpl 中 addStatistics 方法的实现 - 从 AppStatisticsService 接口中移除 addStatistics 方法声明- 清理 FaceServiceImpl 中调用统计记录添加的代码逻辑
This commit is contained in:
@@ -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);
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user