18 lines
339 B
Go
18 lines
339 B
Go
package tool
|
|
|
|
// DownloadAttachSection
|
|
// @description: 下载附件 - Section参数
|
|
type DownloadAttachSection struct {
|
|
DataLen int `json:"dataLen"`
|
|
StartPos int `json:"startPos"`
|
|
}
|
|
|
|
// SetProxyRequest
|
|
// @description: 设置代理参数
|
|
type SetProxyRequest struct {
|
|
Ip string
|
|
Port int
|
|
Username string
|
|
Password string
|
|
}
|