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