From 35c9dbdd9529cd6ad53c14e9d132d65445ee61dc Mon Sep 17 00:00:00 2001 From: "qiyunfanbo126.com" <815699> Date: Wed, 8 May 2024 11:54:08 +0800 Subject: [PATCH] =?UTF-8?q?=E6=96=B0=E5=A2=9E=E5=9F=BA=E7=A1=80=E8=AF=B7?= =?UTF-8?q?=E6=B1=82?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- app/http/entities/common.go | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 app/http/entities/common.go diff --git a/app/http/entities/common.go b/app/http/entities/common.go new file mode 100644 index 0000000..e34775a --- /dev/null +++ b/app/http/entities/common.go @@ -0,0 +1,15 @@ +package entities + +type IdRequest struct { + Id int64 `json:"id"` +} + +type PageRequest struct { + Page int64 `json:"page"` + PageSize int64 `json:"pageSize"` +} + +type PageRsp struct { + Total int64 `json:"total"` + Data []interface{} `json:"data"` +}