Files
servicebase/pkg/dto/request/GetChatRoomActivityRequest.go
2025-11-19 14:24:13 +08:00

26 lines
515 B
Go
Raw Permalink Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

package request
import "errors"
type GetChatroomActivityRequest struct {
BaseRequest
ChatroomId string
ViewPosition string // 房间右侧ROOM_RIGHT 普通礼物栏GIFT_NORMAL 礼物背包GIFT_BAG
}
// 参数合法性检验
func (request *GetChatroomActivityRequest) CheckParameter() (err error) {
if len(request.AccessToken) == 0 {
err = errors.New("AccessToken不能为空")
return
}
if len(request.ChatroomId) == 0 {
err = errors.New("ChatroomId不能为空")
return
}
return
}