...
|
...
|
@@ -78,11 +78,11 @@ type ArticleCommentItem struct { |
|
|
CountAdminLove int `json:"countAdminLove"` // 运营点赞数量
|
|
|
AtWho []CommentAuthor `json:"atWho"` // 填写评论时@的人
|
|
|
CreatedAt int64 `json:"createdAt"` //
|
|
|
MeLoveFlag int `json:"meLoveFlag"` //当前人员对评论的点赞标识
|
|
|
MeLoveFlag int `json:"meLoveFlag"` //当前人员对评论的点赞标识 (0 没有点赞 1有点赞)
|
|
|
}
|
|
|
|
|
|
type MiniGetArticleCommentRequest struct {
|
|
|
CommentId int64 `json:"commentId"`
|
|
|
CommentId int64 `path:"commentId"`
|
|
|
CompanyId int64 `json:",optional"`
|
|
|
}
|
|
|
|
...
|
...
|
@@ -90,6 +90,16 @@ type MiniGetArticleCommentResponse struct { |
|
|
ArticleCommentAndReply
|
|
|
}
|
|
|
|
|
|
type MiniDeleteArticleCommentRequest struct {
|
|
|
CommentId int64 `json:"commentId"`
|
|
|
UserId int64 `json:",optional"`
|
|
|
CompanyId int64 `json:",optional"`
|
|
|
}
|
|
|
|
|
|
type MiniDeleteArticleCommentResponse struct {
|
|
|
Id int64 `json:"id"`
|
|
|
}
|
|
|
|
|
|
type MessageSystemRequest struct {
|
|
|
Page int `json:"page"`
|
|
|
Size int `json:"size"`
|
...
|
...
|
@@ -567,7 +577,7 @@ type MiniArticleGetResponse struct { |
|
|
CountRead int `json:"countRead"` // 浏览数量
|
|
|
Show int `json:"show"` // 评论的展示状态(0显示、1不显示)
|
|
|
Edit int `json:"edit"` // 文章是否存在变更记录 (0 不存在 1存在)
|
|
|
MeLoveFlag int `json:"meLoveFlag"` //当前人员对文章的点赞标识
|
|
|
MeLoveFlag int `json:"meLoveFlag"` // 当前人员对文章的点赞标识 (0 没有点赞 1有点赞)
|
|
|
}
|
|
|
|
|
|
type ArticleSection struct {
|
...
|
...
|
|