57 lines
991 B
Go
57 lines
991 B
Go
package request
|
|
|
|
import "errors"
|
|
|
|
type GetChatroomListRequest struct {
|
|
BaseGuildRequest
|
|
TabId string
|
|
PageNo string
|
|
PageSize string
|
|
}
|
|
|
|
// 参数合法性检验
|
|
func (request *GetChatroomListRequest) CheckParameter() (err error) {
|
|
|
|
if len(request.AccessToken) == 0 {
|
|
err = errors.New("AccessToken不能为空")
|
|
return
|
|
}
|
|
|
|
if len(request.TabId) == 0 {
|
|
err = errors.New("TabId不能为空")
|
|
return
|
|
}
|
|
|
|
if len(request.PageNo) == 0 {
|
|
err = errors.New("PageNo不能为空")
|
|
return
|
|
}
|
|
|
|
if len(request.PageSize) == 0 {
|
|
err = errors.New("PageSize不能为空")
|
|
return
|
|
}
|
|
|
|
return
|
|
}
|
|
|
|
type GetChatroomChildrenListRequest struct {
|
|
BaseRequest
|
|
CurrentRoomId string
|
|
UseDefaultGroup *bool
|
|
RootId string
|
|
PageNo string
|
|
PageSize string
|
|
}
|
|
|
|
// 参数合法性检验
|
|
func (request *GetChatroomChildrenListRequest) CheckParameter() (err error) {
|
|
|
|
if len(request.AccessToken) == 0 {
|
|
err = errors.New("AccessToken不能为空")
|
|
return
|
|
}
|
|
|
|
return
|
|
}
|