fix: 基站状态记录上报移除在线用户数字段

This commit is contained in:
TsMask
2025-02-08 19:42:21 +08:00
parent a10c09bec8
commit 2155d98754
5 changed files with 4 additions and 11 deletions

View File

@@ -635,7 +635,6 @@ func PostNBInfoFromNF(w http.ResponseWriter, r *http.Request) {
Name string `json:"name" `
Position string `json:"position" `
NbName string `json:"nbName" `
UENum int64 `json:"ueNum" `
State string `json:"state" ` // "OFF" or "ON"
OffTime string `json:"offTime" ` //if State=OFF, will set it
OnTime string `json:"onTime" ` //if State=ON , will set it
@@ -680,7 +679,6 @@ func PostNBInfoFromNF(w http.ResponseWriter, r *http.Request) {
Name: v.Name,
Position: v.Position,
NbName: v.NbName,
UeNum: v.UENum,
State: v.State,
Time: timeStr,
})