Files

8 lines
148 B
Go
Raw Normal View History

2021-11-02 16:22:07 +08:00
package basic
2021-11-02 17:01:04 +08:00
// PageDataResponse 分页数据
type PageDataResponse struct {
2021-11-02 16:22:07 +08:00
Data interface{} `json:"data"`
Count int64 `json:"count"`
}