-
Notifications
You must be signed in to change notification settings - Fork 110
/
Copy pathdto.go
55 lines (50 loc) · 1.16 KB
/
dto.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
package types
type ResUserDto struct {
Name string `json:"name"`
}
type UpdateUserDto struct {
Id int64 `json:"id"`
Name string `json:"name"`
Password string `json:"password"`
}
type LoginDto struct {
Name string `json:"name"`
Password string `json:"password"`
}
type AddTokenDto struct {
Name string `json:"name"`
}
type UpdateCatelogDto struct {
Id int `json:"id"`
Name string `json:"name"`
Sort int `json:"sort"`
Hide bool `json:"hide"`
}
type AddCatelogDto struct {
Name string `json:"name"`
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 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 UpdateToolsSortDto struct {
Id int `json:"id"`
Sort int `json:"sort"`
}