rts-sim-module/component/iscs_bas_chiller.go

15 lines
345 B
Go
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

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]() //冷水机组