feat: 新增网元数据模块

This commit is contained in:
TsMask
2024-01-24 11:51:27 +08:00
parent 39a83c0753
commit e6013789d1
14 changed files with 549 additions and 1 deletions

View File

@@ -0,0 +1,12 @@
package repository
import "ems.agt/src/modules/network_element/model"
// 性能统计 数据层接口
type IPerfKPI interface {
// SelectGoldKPI 通过网元指标数据信息
SelectGoldKPI(query model.GoldKPIQuery, kpiIds []string) []map[string]any
// SelectGoldKPITitle
SelectGoldKPITitle(neType string) []model.GoldKPITitle
}