17 lines
471 B
Go
17 lines
471 B
Go
package infra
|
|
|
|
import (
|
|
"encoding/json"
|
|
|
|
"git.loafle.net/overflow/commons-go/core/util"
|
|
"git.loafle.net/overflow/commons-go/model/meta"
|
|
"git.loafle.net/overflow/commons-go/model/probe"
|
|
)
|
|
|
|
type Infra struct {
|
|
ID json.Number `json:"id,Number,omitempty"`
|
|
MetaInfraType *meta.MetaInfraType `json:"metaInfraType,omitempty"`
|
|
Probe *probe.Probe `json:"probe,omitempty"`
|
|
CreateDate *util.Timestamp `json:"createDate,omitempty"`
|
|
}
|