feat: 添加KpiReport模型和SelectKPI方法,优化数据查询逻辑

This commit is contained in:
TsMask
2025-06-26 17:22:19 +08:00
parent 35fccddebf
commit 40a95184dd
4 changed files with 167 additions and 1 deletions

View File

@@ -91,7 +91,7 @@ func (s *PerfKPIController) GoldKPI(c *gin.Context) {
}
// 查询数据
kpiData := s.perfKPIService.SelectGoldKPI(querys)
kpiData := s.perfKPIService.FindData(querys)
c.JSON(200, result.OkData(kpiData))
}