1
0
Files
omc_api/src/modules/network_element/service/perf_kpi.go
2023-12-29 20:22:43 +08:00

13 lines
316 B
Go

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