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