feat(app): update

This commit is contained in:
Yangtao
2025-11-19 14:24:13 +08:00
parent 1eac66d7fd
commit 0c34585649
329 changed files with 10760 additions and 281 deletions

View File

@ -0,0 +1,56 @@
package request
import "errors"
type PraiseReplyRequest struct {
BaseRequest
ReplyId string
}
// 参数合法性检验
func (request *PraiseReplyRequest) CheckParameter() (err error) {
if len(request.AccessToken) == 0 {
err = errors.New("AccessToken不能为空")
return
}
if len(request.ReplyId) == 0 {
err = errors.New("ReplyId不能为空")
return
}
return
}
// 设置推荐状态
type SetTimelineRecommandStatusRequest struct {
BaseRequest
TimelineId string
RecommandStatus string // 1=上热门 0=下热门
}
// 参数合法性检验
func (request *SetTimelineRecommandStatusRequest) CheckParameter() (err error) {
if len(request.AccessToken) == 0 {
err = errors.New("AccessToken不能为空")
return
}
if len(request.TimelineId) == 0 {
err = errors.New("动态ID不能为空")
return
}
if len(request.RecommandStatus) == 0 {
err = errors.New("缺少状态参数")
return
}
if request.RecommandStatus != "0" && request.RecommandStatus != "1" {
err = errors.New("状态参数错误")
return
}
return
}