作者 tangxvhui

调整文章列表输出的数据

... ... @@ -88,6 +88,7 @@ type (
CreatedAt int64 `json:"createdAt"` //文章的创建日期
CountLove int `json:"countLove"` //点赞数量
CountComment int `json:"CountComment"` //评论数量
CountRead int `json:"countRead"` //浏览数量
Show int `json:"show"` //是否隐藏 [0显示、1不显示]
}
... ...
... ... @@ -59,6 +59,7 @@ func NewArticle(article *domain.Article) types.ArticleSearchMe {
CreatedAt: article.CreatedAt,
CountLove: article.CountLove,
CountComment: article.CountComment,
CountRead: article.CountRead,
Show: int(article.Show),
}
return articleSearchMe
... ...
... ... @@ -831,6 +831,7 @@ type ArticleSearchMe struct {
CreatedAt int64 `json:"createdAt"` //文章的创建日期
CountLove int `json:"countLove"` //点赞数量
CountComment int `json:"CountComment"` //评论数量
CountRead int `json:"countRead"` //浏览数量
Show int `json:"show"` //是否隐藏 [0显示、1不显示]
}
... ...