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.

14 lines
322 B

3 years ago
  1. package request
  2. import (
  3. "autocode/model/common/request"
  4. "autocode/model/system"
  5. )
  6. // api分页条件查询及排序结构体
  7. type SearchApiParams struct {
  8. system.SysApi
  9. request.PageInfo
  10. OrderKey string `json:"orderKey"` // 排序
  11. Desc bool `json:"desc"` // 排序方式:升序false(默认)|降序true
  12. }