From 94bf0d6b6a1a0b8122e0e400e717df53df8fca73 Mon Sep 17 00:00:00 2001 From: tzwang Date: Tue, 10 Oct 2023 17:23:59 +0800 Subject: [PATCH] =?UTF-8?q?=E5=AD=98=E7=AE=97=E8=81=94=E5=8A=A8=E4=BF=AE?= =?UTF-8?q?=E6=94=B9?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Former-commit-id: 4b548d7cd1ad30e1f30b487844e7e0320bded1bd --- api/desc/storelink/pcm-storelink.api | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/api/desc/storelink/pcm-storelink.api b/api/desc/storelink/pcm-storelink.api index 7871c6e3..f1db3a8d 100644 --- a/api/desc/storelink/pcm-storelink.api +++ b/api/desc/storelink/pcm-storelink.api @@ -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"`