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