xian-ncc-da-message/protos/LineNetTrainOffset.proto
2023-06-09 17:55:34 +08:00

29 lines
590 B
Protocol Buffer
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.

syntax = "proto3";
option java_package = "club.joylink.xiannccda.proto.data";
option java_outer_classname = "LineNetTrainOffsetProto";
//线网车辆位置
message LineNetTrainOffset{
//线路id
int32 lineId = 1;
//车组号
string Group_id = 2;
//方向
int32 dir = 3;
// true-到达false-出发
// bool initType = 4;
//位置
// int32 offset = 5;
//目的地id
// int32 destinationId = 6;
//后方车站
// int32 backId = 7;
//是否删除
bool show = 8;
//车次窗编号
int32 windowNo = 9;
//车次窗位置
int32 windowOffset = 10;
}