2020-04-08 11:07:27 +08:00
|
|
|
package request
|
|
|
|
|
|
|
|
// Paging common input parameter structure
|
|
|
|
type PageInfo struct {
|
2020-04-10 13:47:52 +08:00
|
|
|
Page int `json:"page" form:"page"`
|
|
|
|
PageSize int `json:"pageSize" form:"pageSize"`
|
2020-04-08 11:07:27 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
// Find by id structure
|
|
|
|
type GetById struct {
|
2020-04-10 13:47:52 +08:00
|
|
|
Id float64 `json:"id" form:"id"`
|
2020-04-08 11:07:27 +08:00
|
|
|
}
|