package grmi
|
|
|
|
type PagingResult struct {
|
|
Records interface{} `json:"records"`
|
|
Count int64 `json:"count"`
|
|
PageNumber int64 `json:"pageNumber"`
|
|
PageSize int64 `json:"pageSize"`
|
|
}
|
|
|
|
var EmptyPagingResult = PagingResult{}
|