package app // PageInfo 分页模型 type PageInfo struct { Page int `json:"page"` // 页码 Size int `json:"size"` // 每页条数 }