14 lines
256 B
Go
14 lines
256 B
Go
|
package ref
|
|||
|
|
|||
|
import (
|
|||
|
"joylink.club/bj-rtsts-server/ats/verify/simulation/wayside/face"
|
|||
|
)
|
|||
|
|
|||
|
// 道岔定反位引用定义
|
|||
|
type SwitchPositionRef struct {
|
|||
|
//道岔设备
|
|||
|
SwitchDevice face.SwitchDeviceModeller
|
|||
|
//true-定位,false-反位
|
|||
|
Normal bool
|
|||
|
}
|