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.

12 lines
218 B

  1. package request
  2. // Paging common input parameter structure
  3. type PageInfo struct {
  4. Page int `json:"page"`
  5. PageSize int `json:"pageSize"`
  6. }
  7. // Find by id structure
  8. type GetById struct {
  9. Id float64 `json:"id"`
  10. }