rts-sim-module/component/iscs_bas_plc.go
2023-12-19 11:11:27 +08:00

16 lines
253 B
Go

package component
import (
"joylink.club/ecs"
)
// PlcController PLC控制器
// 具体异常-通信中断、故障、异常
type PlcController struct {
Normal bool //true-正常
}
var (
PlcControllerType = ecs.NewComponentType[PlcController]()
)