8 lines
148 B
Go
8 lines
148 B
Go
package basic
|
|
|
|
// PageDataResponse 分页数据
|
|
type PageDataResponse struct {
|
|
Data interface{} `json:"data"`
|
|
Count int64 `json:"count"`
|
|
}
|