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.
Open-IM-Server/pkg/cms_api_struct/common.go

12 lines
279 B

3 years ago
package cms_api_struct
type RequestPagination struct {
2 years ago
PageNumber int `json:"pageNumber" binding:"required"`
ShowNumber int `json:"showNumber" binding:"required"`
}
3 years ago
type ResponsePagination struct {
2 years ago
CurrentPage int `json:"currentPage"`
ShowNumber int `json:"showNumber"`
2 years ago
}