forked from JointCloud/pcm-coordinator
修改列表查询入参名称
This commit is contained in:
parent
e210b3c283
commit
f3a7238077
|
@ -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"` // 任务总数
|
||||||
|
|
|
@ -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 {
|
||||||
|
|
Loading…
Reference in New Issue