...
|
...
|
@@ -485,13 +485,14 @@ type MiniHomePageUserBeLikedResponse struct { |
|
|
}
|
|
|
|
|
|
type MiniHomepageUserNewsRequest struct {
|
|
|
AuthorId int64 `json:"authorId"` // 特定作者ID
|
|
|
LastArticleId int64 `json:"lastArticleId,optional"` // 最后文章ID
|
|
|
Size int `json:"size"` // 数量
|
|
|
OrderByHotScore string `json:"orderByHotScore,options=asc|desc,optional,default=desc"` // 热度排序 升序 asc 降序 desc
|
|
|
Keywords string `json:"keywords,optional"` // 关键字
|
|
|
BeginTime int64 `json:"beginTime,optional"` // 开始时间
|
|
|
EndTime int64 `json:"endTime,optional"` // 结束时间
|
|
|
AuthorId int64 `json:"authorId"` // 特定作者ID
|
|
|
LastArticleId int64 `json:"lastArticleId,optional"` // 最后文章ID
|
|
|
Size int `json:"size"` // 数量
|
|
|
OrderByKey string `json:"orderByKey,options=HotScore|All|Time,optional,default=desc"` // 按规则排序 (热度:HotScore All:时间排序 Time:时间排序)
|
|
|
OrderByValue string `json:"orderByValue,options=asc||desc,optional"`
|
|
|
Keywords string `json:"keywords,optional"` // 关键字
|
|
|
BeginTime int64 `json:"beginTime,optional"` // 开始时间
|
|
|
EndTime int64 `json:"endTime,optional"` // 结束时间
|
|
|
}
|
|
|
|
|
|
type MiniHomepageUserNewsResposne struct {
|
...
|
...
|
|