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.
15 lines
398 B
15 lines
398 B
|
4 years ago
|
package request
|
||
|
|
|
||
|
|
import (
|
||
|
|
"github.com/flipped-aurora/gin-vue-admin/server/model/common/request"
|
||
|
|
"github.com/flipped-aurora/gin-vue-admin/server/model/system"
|
||
|
|
)
|
||
|
|
|
||
|
|
// api分页条件查询及排序结构体
|
||
|
|
type SearchApiParams struct {
|
||
|
|
system.SysApi
|
||
|
|
request.PageInfo
|
||
|
|
OrderKey string `json:"orderKey"` // 排序
|
||
|
|
Desc bool `json:"desc"` // 排序方式:升序false(默认)|降序true
|
||
|
|
}
|