package grmi
|
|
|
|
type PagingResult struct {
|
|
Records interface{} `json:"records"`
|
|
Count int64 `json:"count"`
|
|
PageIndex int `json:"pageIndex"`
|
|
PageSize int `json:"pageSize"`
|
|
}
|