rts-sim-testing-service/ts/simulation/app_component/component.go
thesai 49e3199c06 【新增】洗车机模型构建、ecs实体构建
【修改】洗车机ecs电路系统逻辑
2024-04-02 14:09:42 +08:00

17 lines
588 B
Go

package appcomponent
import (
"joylink.club/bj-rtsts-server/dto/request_proto"
"joylink.club/ecs"
)
var (
PointsParamType = ecs.NewComponentType[request_proto.PointsParam]()
SignalParamType = ecs.NewComponentType[request_proto.SignalParam]()
SectionParamType = ecs.NewComponentType[request_proto.SectionParam]()
PsdParamType = ecs.NewComponentType[request_proto.PsdParam]()
CkmParamType = ecs.NewComponentType[request_proto.CkmParam]()
XcjParamType = ecs.NewComponentType[request_proto.XcjParam]()
RelayStateLossTag = ecs.NewTag() //继电器状态丢失
)