2024-03-07 17:07:41 +08:00
|
|
|
package vo
|
|
|
|
|
|
|
|
// Server
|
|
|
|
// @description: 服务端返回信息
|
|
|
|
type Server struct {
|
2024-03-14 15:23:16 +08:00
|
|
|
Id string `json:"id"` // id
|
|
|
|
IpScope []string `json:"ipScope" gorm:"-"` // ip范围
|
|
|
|
IpScopeStr string `json:"-" gorm:"ipScope"`
|
|
|
|
ListenPort int `json:"listenPort"` // 服务监听端口
|
|
|
|
PrivateKey string `json:"privateKey"` // 私钥
|
|
|
|
PublicKey string `json:"publicKey"` // 公钥
|
|
|
|
PostUpScript string `json:"postUpScript"`
|
|
|
|
PreDownScript string `json:"preDownScript"`
|
|
|
|
PostDownScript string `json:"postDownScript"`
|
2024-03-07 17:07:41 +08:00
|
|
|
}
|