feat: 性能统计接口

This commit is contained in:
TsMask
2023-12-05 18:00:22 +08:00
parent b9e4b2e6d9
commit 9429a466bd
7 changed files with 246 additions and 0 deletions

View File

@@ -0,0 +1,12 @@
package service
import "ems.agt/src/modules/network_element/model"
// 性能统计 数据层接口
type IPerfKPI interface {
// SelectGoldKPI 通过ne_type和ne_id查询网元信息
SelectGoldKPI(rmUID, neType string, startTime, endTime string, kpiIds []string, interval int64) []map[string]any
// SelectGoldKPITitle
SelectGoldKPITitle(neType string) []model.GoldKPITitle
}