Merge pull request 'schedule situation' (#138) from zhangweiii/pcm-coordinator:master into master

Former-commit-id: 90832ead729d001184c3b20c8d6045dc57bbf991
This commit is contained in:
zhangweiii 2024-05-07 18:04:17 +08:00
commit 53576b752f
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

@ -5717,9 +5717,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"`
}