feat(app): update
This commit is contained in:
31
pkg/dto/request/GetTimelineReplyChildrenRequest.go
Normal file
31
pkg/dto/request/GetTimelineReplyChildrenRequest.go
Normal file
@ -0,0 +1,31 @@
|
||||
package request
|
||||
|
||||
import "errors"
|
||||
|
||||
type GetTimelineReplyChildrenRequest struct {
|
||||
BaseRequest
|
||||
ReplyId string
|
||||
PageNo string
|
||||
PageSize string
|
||||
}
|
||||
|
||||
// 获取用户动态
|
||||
func (request *GetTimelineReplyChildrenRequest) CheckParameter() (err error) {
|
||||
|
||||
if len(request.AccessToken) == 0 {
|
||||
err = errors.New("AccessToken不能为空")
|
||||
return
|
||||
}
|
||||
|
||||
if len(request.ReplyId) == 0 {
|
||||
err = errors.New("ReplyId不能为空")
|
||||
return
|
||||
}
|
||||
|
||||
if len(request.PageSize) == 0 || len(request.PageNo) == 0 {
|
||||
err = errors.New("PageNo或PageSize不能为空")
|
||||
return
|
||||
}
|
||||
|
||||
return
|
||||
}
|
||||
Reference in New Issue
Block a user