forked from Mereithhh/van-nav
-
Notifications
You must be signed in to change notification settings - Fork 0
/
types.go
97 lines (87 loc) · 2.11 KB
/
types.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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
package main
type loginDto struct {
Name string `json:"name"`
Password string `json:"password"`
}
// 默认是 0
type Setting struct {
Id int `json:"id"`
Favicon string `json:"favicon"`
Title string `json:"title"`
GovRecord string `json:"govRecord"`
Logo192 string `json:"logo192"`
Logo512 string `json:"logo512"`
HideAdmin bool `json:"hideAdmin"`
HideGithub bool `json:"hideGithub"`
JumpTargetBlank bool `json:"jumpTargetBlank"`
}
type Token struct {
Id int `json:"id"`
Name string `json:"name"`
Value string `json:"value"`
Disabled int `json:"disabled"`
}
type AddTokenDto struct {
Name string `json:"name"`
}
type User struct {
Id int `json:"id"`
Name string `json:"name"`
Password string `json:"password"`
}
type Img struct {
Id int `json:"id"`
Url string `json:"url"`
Value string `json:"value"`
}
type resUserDto struct {
Name string `json:"name"`
}
type updateUserDto struct {
Id int64 `json:"id"`
Name string `json:"name"`
Password string `json:"password"`
}
type Tool struct {
Id int `json:"id"`
Name string `json:"name"`
Url string `json:"url"`
Logo string `json:"logo"`
Catelog string `json:"catelog"`
Desc string `json:"desc"`
Sort int `json:"sort"`
Hide bool `json:"hide"`
}
type addToolDto struct {
Name string `json:"name"`
Url string `json:"url"`
Logo string `json:"logo"`
Catelog string `json:"catelog"`
Desc string `json:"desc"`
Sort int `json:"sort"`
Hide bool `json:"hide"`
}
type updateToolDto struct {
Id int `json:"id"`
Name string `json:"name"`
Url string `json:"url"`
Logo string `json:"logo"`
Catelog string `json:"catelog"`
Desc string `json:"desc"`
Sort int `json:"sort"`
Hide bool `json:"hide"`
}
type updateCatelogDto struct {
Id int `json:"id"`
Name string `json:"name"`
Sort int `json:"sort"`
}
type addCatelogDto struct {
Name string `json:"name"`
Sort int `json:"sort"`
}
type Catelog struct {
Id int `json:"id"`
Name string `json:"name"`
Sort int `json:"sort"`
}