2023-12-13 16:10:18 +08:00
|
|
|
package component
|
|
|
|
|
|
|
|
import (
|
|
|
|
"joylink.club/ecs"
|
|
|
|
)
|
|
|
|
|
|
|
|
// NetworkSwitch 交换机
|
2023-12-19 11:11:27 +08:00
|
|
|
// 具体异常-通信中断、异常
|
2023-12-13 16:10:18 +08:00
|
|
|
type NetworkSwitch struct {
|
2023-12-19 11:11:27 +08:00
|
|
|
Normal bool //true-正常
|
2023-12-13 16:10:18 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
var (
|
|
|
|
NetworkSwitchType = ecs.NewComponentType[NetworkSwitch]()
|
|
|
|
)
|