2023-06-09 14:47:04 +08:00
|
|
|
|
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-出发
|
2023-06-09 17:55:34 +08:00
|
|
|
|
// bool initType = 4;
|
2023-06-09 14:47:04 +08:00
|
|
|
|
//位置
|
2023-06-09 17:55:34 +08:00
|
|
|
|
// int32 offset = 5;
|
2023-06-09 14:47:04 +08:00
|
|
|
|
//目的地id
|
2023-06-09 17:55:34 +08:00
|
|
|
|
// int32 destinationId = 6;
|
2023-06-09 14:47:04 +08:00
|
|
|
|
//后方车站
|
2023-06-09 17:55:34 +08:00
|
|
|
|
// int32 backId = 7;
|
2023-06-09 14:47:04 +08:00
|
|
|
|
//是否删除
|
|
|
|
|
bool show = 8;
|
2023-06-09 17:55:34 +08:00
|
|
|
|
//车次窗编号
|
|
|
|
|
int32 windowNo = 9;
|
|
|
|
|
//车次窗位置
|
|
|
|
|
int32 windowOffset = 10;
|
2023-06-09 14:47:04 +08:00
|
|
|
|
}
|
|
|
|
|
|