-
Notifications
You must be signed in to change notification settings - Fork 3
/
request_models.go
61 lines (56 loc) · 1.52 KB
/
request_models.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
package bt_go_sdk
/*
*定义请求参数较为复杂的结构体
带注释为必填 其余为选填
省略项默认填为默认值或空 推荐多填
*/
// ReqSites 获取网站列表
// URI 地址:/data?action=getData&table=sites
type ReqSites struct {
P int64
Limit int64 // 必填
Type int64
Order string
ToJS string
Search string
}
// ReqAddSite 创建网站
// URI 地址:/site?action=AddSite
type ReqAddSite struct {
WebName struct {
Domain string `json:"domain"` // 必填
DomainList []string `json:"domainlist"` // 必填
Count int `json:"count"` // 必填
}
Path string // 必填
TypeID int64 // 必填
Type string // 必填
Version int64 // 必填
Port int64 // 必填
PS string // 必填
FTP bool // 必填
FTPUserName string // FTP 为 true 时 必填
FTPPassword string // FTP 为 true 时 必填
SQL bool // 必填
Codeing string // SQL 为 true 时 必填
DataUser string // SQL 为 true 时 必填
DataPassword string // SQL 为 true 时 必填
}
// ReqDeleteSite 删除网站
// URI 地址:/site?action=DeleteSite
type ReqDeleteSite struct {
ID int64 // 必填
WebName string // 必填
FTP bool
Database bool
Path bool
}
// ReqSiteBackups 获取网站备份列表
// URI 地址:/data?action=getData&table=backup
type ReqSiteBackups struct {
P int64
Limit int64 // 必填
Type int64 // 必不填或填0
ToJS string
Search int64 // 必填
}