...
|
...
|
@@ -281,13 +281,13 @@ type ( |
|
|
}
|
|
|
|
|
|
MiniArticleMarkItem {
|
|
|
Id int64 `json:"id"`
|
|
|
CompanyId int64 `json:"companyId"`
|
|
|
UserId int64 `json:"userId"`
|
|
|
ArticleId int64 `json:"articleId"`
|
|
|
Title string `json:"title"`
|
|
|
Id int64 `json:"id"`
|
|
|
CompanyId int64 `json:"companyId"`
|
|
|
UserId int64 `json:"userId"`
|
|
|
ArticleId int64 `json:"articleId"`
|
|
|
Title string `json:"title"`
|
|
|
Author SimpleUser `json:"author"` // 发布人
|
|
|
UpdatedAt int64 `json:"updatedAt"`
|
|
|
UpdatedAt int64 `json:"updatedAt"`
|
|
|
}
|
|
|
)
|
|
|
|
...
|
...
|
@@ -460,4 +460,21 @@ type ( |
|
|
|
|
|
//小程序端 首页数据展示
|
|
|
// 统计各标签下的文章数量,和已被人员阅读的数量
|
|
|
type |
|
|
\ No newline at end of file |
|
|
type (
|
|
|
MiniHomePageRequest {
|
|
|
CompanyId int64 `path:",optional"`
|
|
|
UserId int64 `path:",optional"`
|
|
|
}
|
|
|
MiniHomePageRespose {
|
|
|
Tags []ArticleTagCount `json:"tags"`
|
|
|
}
|
|
|
ArticleTagCount {
|
|
|
TagGroup string `json:"tagGroup"` // 标签分组
|
|
|
TagId int64 `json:"tagId"` // 标签id
|
|
|
TagImage string `json:"tagImage"` // 对应的图标
|
|
|
TagName string `json:"tagName"` // 标签名称
|
|
|
TagRemark string `json:"tagRemark"` // 标签备注
|
|
|
TotalArticle int `json:"totalArticle"` // 总的文章数量
|
|
|
ReadArticle int `json:"readArticle"` // 已读的标签数量
|
|
|
}
|
|
|
) |
|
|
\ No newline at end of file |
...
|
...
|
|