feat(app): update
This commit is contained in:
24
pkg/dto/request/GetChatRoomBlackReasonRequest.go
Normal file
24
pkg/dto/request/GetChatRoomBlackReasonRequest.go
Normal file
@ -0,0 +1,24 @@
|
||||
package request
|
||||
|
||||
import "errors"
|
||||
|
||||
type GetChatroomBlackReasonRequest struct {
|
||||
BaseRequest
|
||||
TemplateId string
|
||||
}
|
||||
|
||||
// 参数合法性检验
|
||||
func (request *GetChatroomBlackReasonRequest) CheckParameter() (err error) {
|
||||
|
||||
if len(request.AccessToken) == 0 {
|
||||
err = errors.New("AccessToken不能为空")
|
||||
return
|
||||
}
|
||||
|
||||
if len(request.TemplateId) == 0 {
|
||||
err = errors.New("ChatroomId不能为空")
|
||||
return
|
||||
}
|
||||
|
||||
return
|
||||
}
|
||||
Reference in New Issue
Block a user