17 lines
605 B
Go
17 lines
605 B
Go
package model
|
|
|
|
import (
|
|
"git.loafle.net/overflow/overflow_service/proxy/meta"
|
|
"encoding/json"
|
|
"git.loafle.net/overflow/overflow_commons_go/modules/timestamp/model"
|
|
)
|
|
|
|
type InfraServiceApplication struct {
|
|
Infra
|
|
InfraHost *InfraHost `json:"host,omitempty"`
|
|
PortType string `json:"portType,omitempty"`
|
|
Port json.Number `json:"port,omitempty"`
|
|
MetaInfraVendor *meta.MetaInfraVendor `json:"vendor,omitempty"`
|
|
CreateDate timestamp.Timestamp `json:"createDate,omitempty"`
|
|
TlsType bool `json:"tlsType,omitempty"`
|
|
} |