mirror of
https://github.com/1Panel-dev/1Panel.git
synced 2024-12-24 15:27:49 +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"`
|
||
|
}
|