1
0

marge: 合并代码

This commit is contained in:
TsMask
2023-12-08 10:32:06 +08:00
parent 6fe7464779
commit 56310cc3c9
22 changed files with 473 additions and 50 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
}