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