user_read_article.go 322 字节
package domain

// 人员查看文章详情后,标记一个记录

type UserReadArticle struct {
	Id            int64      `json:"id"`
	UserId        int64      `json:"userId"`
	ArticleId     int64      `json:"articleId"`
	Title         string     `json:"title"`
	ArticleAuthor UserSimple `json:"author"` // 发布人
}