集成swagger

This commit is contained in:
xiangheng
2023-12-01 00:50:48 +08:00
parent ba8b56f68c
commit f109a7ea86
10 changed files with 209 additions and 14 deletions

View File

@@ -3,7 +3,7 @@ package response
//PageResp 分页返回值
type PageResp struct {
Count int64 `json:"count"` // 总数
PageNo int `json:"pageNo"` // 页No
PageNo int `json:"pageNo"` // 每页数量
PageSize int `json:"pageSize"` // 每页Size
Lists interface{} `json:"lists"` // 数据
}