43 lines
819 B
Go
43 lines
819 B
Go
package request
|
|
|
|
import "errors"
|
|
|
|
type SetChatroomAdminUserRequest struct {
|
|
BaseRequest
|
|
ChatroomId string
|
|
UserId string
|
|
ActionType string // 1= 设置管理员 0=取消管理员
|
|
|
|
}
|
|
|
|
// 注册用户信息签名验证
|
|
func (request *SetChatroomAdminUserRequest) CheckParameter() (err error) {
|
|
|
|
if len(request.AccessToken) == 0 {
|
|
err = errors.New("AccessToken不能为空")
|
|
return
|
|
}
|
|
|
|
if len(request.ChatroomId) == 0 {
|
|
err = errors.New("ChatroomId不能为空")
|
|
return
|
|
}
|
|
|
|
if len(request.UserId) == 0 {
|
|
err = errors.New("UserId不能为空")
|
|
return
|
|
}
|
|
|
|
if len(request.ActionType) == 0 {
|
|
err = errors.New("ActionType不能为空")
|
|
return
|
|
}
|
|
|
|
if request.ActionType != "0" && request.ActionType != "1" && request.ActionType != "2" {
|
|
err = errors.New("ActionType无效")
|
|
return
|
|
}
|
|
|
|
return
|
|
}
|