This commit is contained in:
laodaming 2023-07-11 19:29:20 +08:00
parent d20a1b0354
commit e0de8bfcf2
2 changed files with 2 additions and 2 deletions

View File

@ -8,7 +8,7 @@ import (
type GetProductListReq struct {
Cid int64 `form:"cid"`
Size uint32 `form:"size"`
Page uint32 `form:"page"`
Page uint32 `form:"page,optional"`
IsDemo uint32 `form:"is_demo,optional"`
}

View File

@ -43,7 +43,7 @@ service product {
type GetProductListReq {
Cid int64 `form:"cid"`
Size uint32 `form:"size"`
Page uint32 `form:"page"`
Page uint32 `form:"page,optional"`
IsDemo uint32 `form:"is_demo,optional"`
}
type GetProductListRsp {