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