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.

11 lines
273 B

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