13 lines
316 B
Go
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
|
|
}
|