From 34b1de6d4241dae7a57c6cb5d780a27910eb905e Mon Sep 17 00:00:00 2001 From: thaingocquang Date: Mon, 7 Nov 2022 15:48:28 +0700 Subject: [PATCH] [location] update request model add page & limit --- model/common_request.go | 3 +++ 1 file changed, 3 insertions(+) diff --git a/model/common_request.go b/model/common_request.go index 4ffd6e1..8442864 100644 --- a/model/common_request.go +++ b/model/common_request.go @@ -35,4 +35,7 @@ type RequestCondition struct { Keyword string `json:"keyword"` Region string `json:"region"` + + Page int `json:"page"` + Limit int `json:"limit"` }