2017-11-08 09:50:44 +00:00
|
|
|
package model
|
|
|
|
|
|
|
|
type PageParams struct {
|
2017-12-01 06:04:31 +00:00
|
|
|
PageNo int `json:"pageNo,omitempty"`
|
|
|
|
CountPerPage int `json:"countPerPage,omitempty"`
|
|
|
|
SortCol string `json:"sortCol,omitempty"`
|
|
|
|
SortDirection string `json:"sortDirection,omitempty"`
|
|
|
|
}
|