-
Notifications
You must be signed in to change notification settings - Fork 9
/
model.go
69 lines (63 loc) · 1.6 KB
/
model.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
package ZhihuZhuanlanCrawler
// 专栏
type Zhuanlan struct {
Slug string `json:"slug"`
Name string `json:"name"`
}
// 作者
type Author struct {
ID string `json:"id"`
Name string `json:"name"`
Gender int `json:"gender"`
Headline string `json:"headline"`
Description string `json:"description"`
AvatarUrl string `json:"avatar_url"`
Type string `json:"type"`
UID string `json:"uid"`
URL string `json:"url"`
URLToken string `json:"url_token"`
UserType string `json:"user_type"`
}
// 置顶文章及作者信息
type PinnedArticleAndAuthor struct {
Type string `json:"type"`
ID int `json:"id"`
Updated int64 `json:"updated"`
Created int64 `json:"created"`
Title string `json:"title"`
ImageURL string `json:"image_url"`
URL string `json:"url"`
Excerpt string `json:"excerpt"`
Author Author
}
// 主题
type Topic struct {
Url string `json:"url"`
Type string `json:"type"`
Id string `json:"id"`
Name string `json:"name"`
}
// 文章
type Article struct {
ID int `json:"id"`
Type string `json:"type"`
Title string `json:"title"`
URL string `json:"url"`
Updated int64 `json:"updated"`
Created int64 `json:"created"`
Excerpt string `json:"excerpt"`
Content string `json:"content"`
ImageURL string `json:"image_url"`
Topics []Topic `json:"topics"`
}
// 文章列表
type ArticleList struct {
Paging struct {
IsEnd bool `json:"is_end"`
Totals int `json:"totals"`
IsStart bool `json:"is_start"`
} `json:"paging"`
Data []struct {
ID int `json:"id"`
} `json:"data"`
}