console/model/page_result.go

7 lines
109 B
Go

package model
type PageResult struct {
Total int `json:"total"`
Data interface{} `json:"data"`
}