approveflow/app/http/base/param.go

8 lines
226 B
Go
Raw Permalink Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

package base
// PageRequest 分页请求结构体
type PageRequest struct {
PageNumber int `json:"page_number"` // 当前页码,默认是第一页
PageSize int `json:"page_size"` // 每页记录数默认是10条
}