diff --git a/base/v1/msg.proto b/base/v1/msg.proto index 5384341..17651a1 100644 --- a/base/v1/msg.proto +++ b/base/v1/msg.proto @@ -22,9 +22,9 @@ message PaginationReq { message PaginationResp { - uint32 page = 1; // in query param it will be p - uint32 page_size = 2; // in query param it will be pz - optional uint32 total_count = 3; // reponse + uint32 no = 1; + uint32 size = 2; + optional uint32 count = 3; } message BaseQueryParam { diff --git a/market/v1/msg.proto b/market/v1/msg.proto index 929d6c8..f5f4522 100644 --- a/market/v1/msg.proto +++ b/market/v1/msg.proto @@ -52,6 +52,7 @@ message PurchaseRes { } message MarketOrderList { + base.v1.PaginationResp page = 2; repeated MarketOrder list = 1; }