rts-sim-testing-service/ats/verify/simulation/wayside/model/device/switch_device_model.go
2023-07-31 11:30:34 +08:00

17 lines
391 B
Go
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

package device
import (
"container/list"
"joylink.club/bj-rtsts-server/ats/verify/simulation/wayside/face"
)
// 道岔装置(规定A端为岔尖规定B端为定位端轨道C端为反位端)
type SwitchDeviceModel struct {
//道岔基本信息
face.DeviceModel
//端点的公里标,单位为mm
//list中元素类型为graphicData.KilometerSystem
KilometerSystems *list.List
}