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.
16 lines
358 B
16 lines
358 B
package model |
|
|
|
// SearchPage struct. |
|
type SearchPage struct { |
|
PN int `json:"num"` |
|
PS int `json:"size"` |
|
Total int `json:"total"` |
|
} |
|
|
|
// SearchData search result detail. |
|
type SearchData struct { |
|
Order string `json:"order"` |
|
Sort string `json:"sort"` |
|
Page *SearchPage `json:"page"` |
|
Result []*PointHistory `json:"result"` |
|
}
|
|
|