GAAS GFrame项目web后台
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

10 lines
249 B

  1. package grmi
  2. type PagingResult struct {
  3. Records interface{} `json:"records"`
  4. Count int64 `json:"count"`
  5. PageNumber int64 `json:"pageNumber"`
  6. PageSize int64 `json:"pageSize"`
  7. }
  8. var EmptyPagingResult = PagingResult{}