rts-sim-module/component/iscs_bas_chiller.go

15 lines
345 B
Go
Raw Normal View History

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