2018-04-26 07:37:59 +00:00
|
|
|
package infra
|
2018-04-12 09:38:04 +00:00
|
|
|
|
|
|
|
import (
|
|
|
|
"git.loafle.net/overflow/commons-go/core/util"
|
|
|
|
)
|
|
|
|
|
|
|
|
type InfraHost struct {
|
|
|
|
Infra
|
|
|
|
InfraOS *InfraOS `json:"os,omitempty"`
|
2018-04-26 07:53:29 +00:00
|
|
|
IP string `json:"ip,omitempty"`
|
|
|
|
Mac string `json:"mac,omitempty"`
|
2018-04-12 09:38:04 +00:00
|
|
|
CreateDate util.Timestamp `json:"createDate,omitempty"`
|
|
|
|
}
|