19 lines
469 B
Go
19 lines
469 B
Go
package device
|
|
|
|
import (
|
|
"joylink.club/bj-rtsts-server/ats/verify/simulation/wayside/face"
|
|
"joylink.club/bj-rtsts-server/ats/verify/simulation/wayside/model/ref"
|
|
)
|
|
|
|
type LinkModel struct {
|
|
face.DeviceModel
|
|
//长度
|
|
Length int32
|
|
//A端连接的道岔端点
|
|
ARelatedSwitchRef ref.SwitchRef
|
|
//B端连接的道岔端点
|
|
BRelatedSwitchRef ref.SwitchRef
|
|
//Link上的设备及位置(包括A、B端的设备)(按offset排序)
|
|
DevicePositions []*ref.DevicePosition
|
|
}
|