schedule situation

Former-commit-id: 502ab492f72cf1aec4347bcd1a8a067533d1326a
This commit is contained in:
zhangwei 2024-05-06 08:39:35 +08:00
parent 8078d94e35
commit 3539f6342d
2 changed files with 4 additions and 4 deletions

View File

@ -90,9 +90,9 @@ scheduleSituationResp{
}
NodeRegion{
id int64 `json:"id"`
id string `json:"id"`
name string `json:"name"`
category string `json:"category"`
category int `json:"category"`
value int `json:"value"`
}

View File

@ -5702,9 +5702,9 @@ type ScheduleSituationResp struct {
}
type NodeRegion struct {
Id int64 `json:"id"`
Id string `json:"id"`
Name string `json:"name"`
Category string `json:"category"`
Category int `json:"category"`
Value int `json:"value"`
}