15 lines
320 B
Go
15 lines
320 B
Go
package request
|
|
|
|
import (
|
|
"miniapp/model/common/request"
|
|
"miniapp/model/system"
|
|
)
|
|
|
|
// api分页条件查询及排序结构体
|
|
type SearchApiParams struct {
|
|
system.SysApi
|
|
request.PageInfo
|
|
OrderKey string `json:"orderKey"` // 排序
|
|
Desc bool `json:"desc"` // 排序方式:升序false(默认)|降序true
|
|
}
|