|
...
|
...
|
@@ -18,6 +18,7 @@ type Article struct { |
|
|
|
Author UserSimple `json:"author"` // 发布人
|
|
|
|
Title string `json:"title"` // 文章标题
|
|
|
|
Images []Image `json:"images"` // 图片
|
|
|
|
Videos []Video `json:"videos"` // 视频
|
|
|
|
WhoRead []int64 `json:"whoRead"` // 谁可以看
|
|
|
|
WhoReview []int64 `json:"whoReview"` // 评论人
|
|
|
|
Location Location `json:"location"` // 坐标
|
...
|
...
|
|