feat: 新增网元端公共配置文件读写接口

This commit is contained in:
TsMask
2024-04-16 19:40:29 +08:00
parent 4c37968925
commit 07f6b9c31a
9 changed files with 145 additions and 5 deletions

View File

@@ -59,4 +59,12 @@ type INeInfo interface {
// NeConfigFileWirte 网元配置文件写入 content内容 sync同步到网元端
NeConfigFileWirte(neInfo model.NeInfo, filePath, fileType string, content any, sync bool) error
// NeConfPara5GRead 网元公共配置文件读取
//
// 返回 string map[string]any
NeConfPara5GRead(fileType string) any
// NeConfPara5GWirte 网元公共配置文件写入 content内容 syncNE同步到网元端NeType@NeId
NeConfPara5GWirte(fileType string, content any, syncNE []string) error
}