mirror of
https://github.com/1Panel-dev/1Panel.git
synced 2024-12-20 04:24:07 +08:00
12 lines
221 B
Go
12 lines
221 B
Go
package dto
|
|
|
|
type SearchWithPage struct {
|
|
PageInfo
|
|
Info string `json:"info"`
|
|
}
|
|
|
|
type PageInfo struct {
|
|
Page int `json:"page" validate:"required,number"`
|
|
PageSize int `json:"pageSize" validate:"required,number"`
|
|
}
|