14 lines
277 B
Go
14 lines
277 B
Go
package component
|
||
|
||
import (
|
||
"joylink.club/ecs"
|
||
)
|
||
|
||
// ChillerUnit 冷水机组
|
||
// 具体异常-故障、异常、通信中断
|
||
type ChillerUnit struct {
|
||
Running bool //true-正常运行;false-停机
|
||
}
|
||
|
||
var ChillerUnitType = ecs.NewComponentType[ChillerUnit]() //冷水机组
|