forked from JointCloud/pcm-coordinator
api代码生成
This commit is contained in:
parent
4b548d7cd1
commit
ede86dbb7b
|
@ -2815,10 +2815,27 @@ type GetParticipantsReq struct {
|
||||||
}
|
}
|
||||||
|
|
||||||
type GetParticipantsResp struct {
|
type GetParticipantsResp struct {
|
||||||
|
Success bool `json:"success"`
|
||||||
|
Participants []ParticipantSl `json:"participant"`
|
||||||
}
|
}
|
||||||
|
|
||||||
type GetResourceSpecsReq struct {
|
type GetResourceSpecsReq struct {
|
||||||
}
|
}
|
||||||
|
|
||||||
type GetResourceSpecsResp struct {
|
type GetResourceSpecsResp struct {
|
||||||
|
Success bool `json:"success"`
|
||||||
|
ResourceSpecs []ResourceSpecSl `json:"resourceSpecs"`
|
||||||
|
}
|
||||||
|
|
||||||
|
type ResourceSpecSl struct {
|
||||||
|
ParticipantId string `json:"participantId"`
|
||||||
|
ParticipantName string `json:"participantName"`
|
||||||
|
SpecName string `json:"resourceSpecName"`
|
||||||
|
SpecId string `json:"resourceSpecId"`
|
||||||
|
}
|
||||||
|
|
||||||
|
type ParticipantSl struct {
|
||||||
|
ParticipantId string `json:"id"`
|
||||||
|
ParticipantName string `json:"name"`
|
||||||
|
ParticipantType string `json:"type"`
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue