2024-01-18 14:11:47 +08:00
|
|
|
package appcomponent
|
|
|
|
|
|
|
|
import (
|
|
|
|
"joylink.club/bj-rtsts-server/dto/request_proto"
|
|
|
|
"joylink.club/ecs"
|
|
|
|
)
|
|
|
|
|
|
|
|
var (
|
2024-03-29 16:46:31 +08:00
|
|
|
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]()
|
2024-04-02 14:09:42 +08:00
|
|
|
XcjParamType = ecs.NewComponentType[request_proto.XcjParam]()
|
2024-03-29 16:46:31 +08:00
|
|
|
RelayStateLossTag = ecs.NewTag() //继电器状态丢失
|
2024-01-18 14:11:47 +08:00
|
|
|
)
|