fix: 修改UPF流量数据缓存键的常量引用

This commit is contained in:
TsMask
2025-03-21 19:24:56 +08:00
parent 5fdc48c887
commit ecdd61f22b

View File

@@ -206,7 +206,7 @@ func (r KpiReport) UPFTodayFlowLoad(day int) {
// 查询最近day天的数据
for i := 0; i <= day; i++ {
dateKey := now.AddDate(0, 0, -i).Format("2006-01-02")
key := fmt.Sprintf("%s:UPF_FLOW:%s:%s", constants.CACHE_NE_INFO, v.RmUID, dateKey)
key := fmt.Sprintf("%s:UPF_FLOW:%s:%s", constants.CACHE_NE_DATA, v.RmUID, dateKey)
// 根据传入天数计算时间范围
beginTime := now.AddDate(0, 0, -i).Truncate(24 * time.Hour).UnixMilli()
endTime := beginTime + 24*60*60*1000 - 1