17 lines
588 B
Go
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() //继电器状态丢失
|
|
)
|