存算联动修改

Former-commit-id: 4b548d7cd1
This commit is contained in:
tzwang 2023-10-10 17:23:59 +08:00
parent 48a529e08d
commit 94bf0d6b6a
1 changed files with 4 additions and 4 deletions

View File

@ -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"`