forked from JointCloud/pcm-coordinator
存算联动修改
This commit is contained in:
parent
617e29e56c
commit
4b548d7cd1
|
@ -100,7 +100,7 @@ type (
|
|||
|
||||
GetParticipantsResp {
|
||||
Success bool `json:"success"`
|
||||
Participants []Participant `json:"participant"`
|
||||
Participants []ParticipantSl `json:"participant"`
|
||||
}
|
||||
|
||||
GetResourceSpecsReq {
|
||||
|
@ -109,17 +109,17 @@ type (
|
|||
|
||||
GetResourceSpecsResp {
|
||||
Success bool `json:"success"`
|
||||
ResourceSpecs []ResourceSpec `json:"resourceSpecs"`
|
||||
ResourceSpecs []ResourceSpecSl `json:"resourceSpecs"`
|
||||
}
|
||||
|
||||
ResourceSpec {
|
||||
ResourceSpecSl {
|
||||
ParticipantId string `json:"participantId"`
|
||||
ParticipantName string `json:"participantName"`
|
||||
SpecName string `json:"resourceSpecName"`
|
||||
SpecId string `json:"resourceSpecId"`
|
||||
}
|
||||
|
||||
Participant {
|
||||
ParticipantSl {
|
||||
ParticipantId string `json:"id"`
|
||||
ParticipantName string `json:"name"`
|
||||
ParticipantType string `json:"type"`
|
||||
|
|
Loading…
Reference in New Issue