20 lines
551 B
Go
20 lines
551 B
Go
package component
|
||
|
||
import (
|
||
"joylink.club/ecs"
|
||
)
|
||
|
||
// FlowSwitch 流量开关
|
||
// 具体异常-通信中断
|
||
//
|
||
// 主要是在水、气、油等介质管路中在线或者插入式安装监控水系统中水流量的大小。
|
||
// 在水流量高于或者低于某一个设定点时候触发输出报警信号传递给机组,
|
||
// 系统获取信号后即可作出相应的指示动作。避免或减少主机“干烧”。
|
||
type FlowSwitch struct {
|
||
Open bool //true-开启;false-关闭
|
||
}
|
||
|
||
var (
|
||
FlowSwitchType = ecs.NewComponentType[FlowSwitch]()
|
||
)
|