api代码生成

This commit is contained in:
zhangwei 2023-10-10 17:24:28 +08:00
parent 4b548d7cd1
commit ede86dbb7b
1 changed files with 17 additions and 0 deletions

View File

@ -2815,10 +2815,27 @@ type GetParticipantsReq struct {
}
type GetParticipantsResp struct {
Success bool `json:"success"`
Participants []ParticipantSl `json:"participant"`
}
type GetResourceSpecsReq 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"`
}