修改列表查询入参名称

Former-commit-id: f3a7238077a5ea47cc0b56f8c656abf4dd9a5fca
This commit is contained in:
zhouqunjie 2023-11-27 18:48:24 +08:00
parent bbfd4ad044
commit b5b23b876c
2 changed files with 2 additions and 2 deletions

View File

@ -571,7 +571,7 @@ type Participant {
// apps列表参数 // apps列表参数
type ( type (
AppListReq { AppListReq {
Namespace string `form:"namespace"` NsID string `form:"nsID"`
} }
AppListResp { AppListResp {
TotalCount int64 `json:"totalCount"` // 任务总数 TotalCount int64 `json:"totalCount"` // 任务总数

View File

@ -533,7 +533,7 @@ type Participant struct {
} }
type AppListReq struct { type AppListReq struct {
Namespace string `form:"namespace"` NsID string `form:"nsID"`
} }
type AppListResp struct { type AppListResp struct {