search.go 358 B

12345678910111213141516
  1. package model
  2. // SearchPage struct.
  3. type SearchPage struct {
  4. PN int `json:"num"`
  5. PS int `json:"size"`
  6. Total int `json:"total"`
  7. }
  8. // SearchData search result detail.
  9. type SearchData struct {
  10. Order string `json:"order"`
  11. Sort string `json:"sort"`
  12. Page *SearchPage `json:"page"`
  13. Result []*PointHistory `json:"result"`
  14. }