Files
2021-11-02 17:01:04 +08:00

8 lines
148 B
Go

package basic
// PageDataResponse 分页数据
type PageDataResponse struct {
Data interface{} `json:"data"`
Count int64 `json:"count"`
}