user_read_article.go 322 字节 原文件 审查 历史 永久链接 1 2 3 4 5 6 7 8 9 10 11 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"` // 发布人 }