jl-ecs/examples/rtss-cg/state/link_state.go

11 lines
143 B
Go
Raw Normal View History

2023-08-08 13:52:19 +08:00
package state
//轨道状态
//模拟测试区段状态
type LinkState struct {
//轨道id
Id string
//是否有车占用
Occupied bool
}