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