rts-sim-module/component/iscs_bas_network.go

16 lines
241 B
Go
Raw Normal View History

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