15 lines
345 B
Go
15 lines
345 B
Go
|
package component
|
|||
|
|
|||
|
import (
|
|||
|
"joylink.club/ecs"
|
|||
|
"joylink.club/rtsssimulation/consts"
|
|||
|
)
|
|||
|
|
|||
|
// ChillerUnit 冷水机组
|
|||
|
type ChillerUnit struct {
|
|||
|
Running bool //true-正常运行;false-停机
|
|||
|
Exception consts.DeviceExceptionEnum //具体异常
|
|||
|
}
|
|||
|
|
|||
|
var ChillerUnitType = ecs.NewComponentType[ChillerUnit]() //冷水机组
|