2023-12-12 18:07:38 +08:00
|
|
|
|
package component
|
|
|
|
|
|
|
|
|
|
import (
|
|
|
|
|
"joylink.club/ecs"
|
|
|
|
|
)
|
|
|
|
|
|
|
|
|
|
// ChillerUnit 冷水机组
|
2023-12-19 11:11:27 +08:00
|
|
|
|
// 具体异常-故障、异常、通信中断
|
2023-12-12 18:07:38 +08:00
|
|
|
|
type ChillerUnit struct {
|
2023-12-19 11:11:27 +08:00
|
|
|
|
Running bool //true-正常运行;false-停机
|
2023-12-12 18:07:38 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
var ChillerUnitType = ecs.NewComponentType[ChillerUnit]() //冷水机组
|