feat(app): update
This commit is contained in:
56
pkg/dto/request/GetChatroomListRequest.go
Normal file
56
pkg/dto/request/GetChatroomListRequest.go
Normal file
@ -0,0 +1,56 @@
|
||||
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
|
||||
}
|
||||
Reference in New Issue
Block a user