mirror of
https://gitcode.com/flipped-aurora/gin-vue-admin.git
synced 2026-03-03 02:00:26 +00:00
12 lines
273 B
Go
12 lines
273 B
Go
package request
|
|
|
|
import "gin-vue-admin/model"
|
|
|
|
// api分页条件查询及排序结构体
|
|
type SearchApiParams struct {
|
|
model.SysApi
|
|
PageInfo
|
|
OrderKey string `json:"orderKey"` // 排序
|
|
Desc bool `json:"desc"` // 排序方式:升序false(默认)|降序true
|
|
}
|