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