...
|
...
|
@@ -9,24 +9,24 @@ import ( |
|
|
|
|
|
// 文章评论
|
|
|
type ArticleComment struct {
|
|
|
Id int64 `json:"id"` // 评论id
|
|
|
UpdatedAt time.Time `json:"updatedAt"` // 更新时间
|
|
|
DeletedAt *time.Time `json:"deletedAt"`
|
|
|
CreatedAt time.Time `json:"createdAt"`
|
|
|
Pid int64 `json:"pid"` // 对哪个评论进行回复
|
|
|
TopId int64 `json:"topId"` // 归属于最上级的哪个评论
|
|
|
ArticleId int64 `json:"articleId"` // 文章id
|
|
|
ArticleSectionId int64 `json:"articleSectionId"` // 文本内容id
|
|
|
SectionContent string `json:"sectionContent"` // 引用的文章内容文本
|
|
|
FromUserId int64 `json:"fromUserId"` // 谁填写的评论
|
|
|
FromUser UserSimple `json:"fromUser"` // 谁填写的评论
|
|
|
ToUserId int64 `json:"toUserId"` // 回复谁的评论
|
|
|
ToUser UserSimple `json:"toUser"` // 回复谁的评论
|
|
|
Content string `json:"content"` // 评论内容
|
|
|
CountReply int `json:"countReply"` // 回复数量
|
|
|
CountUserLove int `json:"countUserLove"` // 用户点赞数量
|
|
|
CountAdminLove int `json:"countAdminLove"` // 运营点赞数量
|
|
|
Show int `json:"showState"` // 评论的展示状态(0显示、1不显示)
|
|
|
Id int64 `json:"id"` // 评论id
|
|
|
UpdatedAt time.Time `json:"updatedAt"` // 更新时间
|
|
|
DeletedAt *time.Time `json:"deletedAt"` //
|
|
|
CreatedAt time.Time `json:"createdAt"` //
|
|
|
Pid int64 `json:"pid"` // 对哪个评论进行回复
|
|
|
TopId int64 `json:"topId"` // 归属于最上级的哪个评论
|
|
|
ArticleId int64 `json:"articleId"` // 文章id
|
|
|
ArticleSectionId int64 `json:"articleSectionId"` // 文本内容id
|
|
|
SectionContent string `json:"sectionContent"` // 引用的文章内容文本
|
|
|
FromUserId int64 `json:"fromUserId"` // 谁填写的评论
|
|
|
FromUser UserSimple `json:"fromUser"` // 谁填写的评论
|
|
|
ToUserId int64 `json:"toUserId"` // 回复谁的评论
|
|
|
ToUser UserSimple `json:"toUser"` // 回复谁的评论
|
|
|
Content string `json:"content"` // 评论内容
|
|
|
CountReply int `json:"countReply"` // 回复数量
|
|
|
CountUserLove int `json:"countUserLove"` // 用户点赞数量
|
|
|
CountAdminLove int `json:"countAdminLove"` // 运营点赞数量
|
|
|
Show CommentShow `json:"showState"` // 评论的展示状态(0显示、1不显示)
|
|
|
// ...more
|
|
|
}
|
|
|
|
...
|
...
|
|