2023-07-26 17:02:53 +08:00
|
|
|
package dynamics
|
|
|
|
|
|
|
|
type InitTrainInfo struct {
|
2023-07-27 18:18:43 +08:00
|
|
|
TrainIndex uint16 `json:"trainIndex"`
|
|
|
|
LinkIndex uint16 `json:"linkIndex"`
|
|
|
|
LinkOffset uint16 `json:"linkOffset"`
|
2023-08-02 15:47:48 +08:00
|
|
|
//单位0.1km/h
|
|
|
|
Speed uint16 `json:"speed"`
|
|
|
|
Up bool `json:"up"`
|
2023-07-26 17:02:53 +08:00
|
|
|
}
|