Merge pull request 'schedule situation' (#138) from zhangweiii/pcm-coordinator:master into master
Former-commit-id: 90832ead729d001184c3b20c8d6045dc57bbf991
This commit is contained in:
commit
53576b752f
|
@ -90,9 +90,9 @@ scheduleSituationResp{
|
||||||
}
|
}
|
||||||
|
|
||||||
NodeRegion{
|
NodeRegion{
|
||||||
id int64 `json:"id"`
|
id string `json:"id"`
|
||||||
name string `json:"name"`
|
name string `json:"name"`
|
||||||
category string `json:"category"`
|
category int `json:"category"`
|
||||||
value int `json:"value"`
|
value int `json:"value"`
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -5717,9 +5717,9 @@ type ScheduleSituationResp struct {
|
||||||
}
|
}
|
||||||
|
|
||||||
type NodeRegion struct {
|
type NodeRegion struct {
|
||||||
Id int64 `json:"id"`
|
Id string `json:"id"`
|
||||||
Name string `json:"name"`
|
Name string `json:"name"`
|
||||||
Category string `json:"category"`
|
Category int `json:"category"`
|
||||||
Value int `json:"value"`
|
Value int `json:"value"`
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue