This commit is contained in:
xiangheng
2023-11-24 16:46:30 +08:00
commit 8eb583397d
611 changed files with 28854 additions and 0 deletions

View File

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