...
|
...
|
@@ -615,9 +615,10 @@ type MiniArticleGetResponse struct { |
|
|
CountLove int `json:"countLove"` // 点赞数量
|
|
|
CountComment int `json:"countComment"` // 评论数量
|
|
|
CountRead int `json:"countRead"` // 浏览数量
|
|
|
Show int `json:"show"` // 评论的展示状态(0显示、1不显示)
|
|
|
Show int `json:"show"` // 评论的展示状态(1显示、2不显示)
|
|
|
Edit int `json:"edit"` // 文章是否存在变更记录 (0 不存在 1存在)
|
|
|
MeLoveFlag int `json:"meLoveFlag"` // 当前人员对文章的点赞标识 (0 没有点赞 1有点赞)
|
|
|
Tags []string `json:"tags"` //文章的标签
|
|
|
}
|
|
|
|
|
|
type ArticleSection struct {
|
...
|
...
|
@@ -1004,7 +1005,7 @@ type MiniHomePageRequest struct { |
|
|
UserId int64 `path:",optional"`
|
|
|
}
|
|
|
|
|
|
type MiniHomePageRespose struct {
|
|
|
type MiniHomePageResponse struct {
|
|
|
TagCategory []string `json:"tagCategory"`
|
|
|
Tags []ArticleTagCount `json:"tags"`
|
|
|
}
|
...
|
...
|
@@ -1019,6 +1020,32 @@ type ArticleTagCount struct { |
|
|
ReadArticle int `json:"readArticle"` // 已读的标签数量
|
|
|
}
|
|
|
|
|
|
type MiniSearchArticleRequest struct {
|
|
|
Page int `json:"page"`
|
|
|
Size int `json:"size"`
|
|
|
CompanyId int64 `json:",optional"`
|
|
|
UserId int64 `json:",optional"`
|
|
|
TagGroup string `json:"tagGroup"`
|
|
|
TagId int64 `json:"tagId"`
|
|
|
BeginTime int64 `json:"beginTime"`
|
|
|
EndTime int `json:"endTime"`
|
|
|
SearchWord string `json:"searchWord"`
|
|
|
}
|
|
|
|
|
|
type MiniSearchArticleResponse struct {
|
|
|
Total int `json:"total"`
|
|
|
List []MiniSearchArticleItem `json:"list"`
|
|
|
}
|
|
|
|
|
|
type MiniSearchArticleItem struct {
|
|
|
ArticleId int64 `json:"articleId"`
|
|
|
Title string `json:"title"`
|
|
|
Author string `json:"author"` // 发布人
|
|
|
Images []string `json:"images"`
|
|
|
CreatedAt int64 `json:"createdAt"`
|
|
|
MeReadFlag int `json:"meReadFlag"` //已读标识 [0:未读] [1:已读]
|
|
|
}
|
|
|
|
|
|
type RoleGetRequest struct {
|
|
|
Id int64 `path:"id"`
|
|
|
}
|
...
|
...
|
|