...
|
...
|
@@ -118,6 +118,16 @@ type MiniTop5ArticleCommentResponse struct { |
|
|
List []ArticleCommentItem `json:"list"`
|
|
|
}
|
|
|
|
|
|
type MiniArticleCommentAtWhoRequest struct {
|
|
|
CompanyId int64 `json:",optional"`
|
|
|
UserId int64 `json:",optional"`
|
|
|
ArticleId int64 `json:"articleId"`
|
|
|
}
|
|
|
|
|
|
type MiniArticleCommentAtWhoResponse struct {
|
|
|
List []CommentAtWho `json:"list"`
|
|
|
}
|
|
|
|
|
|
type MessageSystemRequest struct {
|
|
|
Page int `json:"page"`
|
|
|
Size int `json:"size"`
|
...
|
...
|
@@ -580,16 +590,16 @@ type MiniArticleGetRequest struct { |
|
|
}
|
|
|
|
|
|
type MiniArticleGetResponse struct {
|
|
|
Id int64 `json:"id"` // id
|
|
|
Title string `json:"title"` // 标题
|
|
|
AuthorId int64 `json:"authorId"` // 发布人id
|
|
|
Author ArticleAuthor `json:"author"` // 发布人
|
|
|
CreatedAt int64 `json:"createdAt"` // 文章的发布时间
|
|
|
Section []ArticleSection `json:"section"` // 文章的文本内容
|
|
|
Images []string `json:"images"` // 图片
|
|
|
WhoRead []int64 `json:"whoRead"` // 谁可查看
|
|
|
WhoReview []int64 `json:"whoReview"` // 谁可评论
|
|
|
Location Location `json:"location"` // 定位坐标
|
|
|
Id int64 `json:"id"` //id
|
|
|
Title string `json:"title"` //标题
|
|
|
AuthorId int64 `json:"authorId"` //发布人id
|
|
|
Author ArticleAuthor `json:"author"` //发布人
|
|
|
CreatedAt int64 `json:"createdAt"` //文章的发布时间
|
|
|
Section []ArticleSection `json:"section"` //文章的文本内容
|
|
|
Images []string `json:"images"` //图片
|
|
|
WhoRead []int64 `json:"whoRead"` //谁可查看
|
|
|
WhoReview []int64 `json:"whoReview"` //谁可评论
|
|
|
Location Location `json:"location"` //定位坐标
|
|
|
CountLove int `json:"countLove"` // 点赞数量
|
|
|
CountComment int `json:"countComment"` // 评论数量
|
|
|
CountRead int `json:"countRead"` // 浏览数量
|
...
|
...
|
@@ -792,6 +802,35 @@ type MiniArticleMarkItem struct { |
|
|
UpdatedAt int64 `json:"updatedAt"`
|
|
|
}
|
|
|
|
|
|
type MiniArticleSetTagRequest struct {
|
|
|
CompanyId int64 `json:",optional"` // 公司id
|
|
|
UserId int64 `json:",optional"` // 公司id
|
|
|
ArticleId int64 `json:"articleId"` // 文章id
|
|
|
TagId int64 `json:"tagId"` // 标签id
|
|
|
}
|
|
|
|
|
|
type MiniArticleSetTagResponse struct {
|
|
|
Id int64 `json:"id"`
|
|
|
}
|
|
|
|
|
|
type MiniAllArticleTagRequest struct {
|
|
|
CompanyId int64 `json:",optional"` // 公司id
|
|
|
UserId int64 `json:",optional"` // 公司id
|
|
|
ArticleId int64 `json:"articleId"` // 文章id
|
|
|
TagId int64 `json:"tagId"` // 标签id
|
|
|
}
|
|
|
|
|
|
type MiniAllArticleTagResponse struct {
|
|
|
TagGroup []string `json:"tagGroup"`
|
|
|
Tags []ArticleTagItem `json:"tags"`
|
|
|
}
|
|
|
|
|
|
type ArticleTagItem struct {
|
|
|
Id int64 `json:"id"`
|
|
|
Group string `json:"group"`
|
|
|
Name string `json:"name"`
|
|
|
}
|
|
|
|
|
|
type SystemArticleGetRequest struct {
|
|
|
Id int64 `path:"id"` //id
|
|
|
CompanyId int64 `path:",optional"`
|
...
|
...
|
|