xian-ncc-da-message/protos/LineNetTrainOffset.proto

25 lines
487 B
Protocol Buffer
Raw Normal View History

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;
//车组号
2023-06-12 16:47:38 +08:00
string groupId = 2;
2023-06-09 14:47:04 +08:00
//方向
int32 dir = 3;
2023-06-12 16:47:38 +08:00
//是否显示
2023-06-09 17:55:53 +08:00
bool show = 4;
2023-06-09 17:55:34 +08:00
//车次窗编号
2023-06-09 17:55:53 +08:00
int32 windowNo = 5;
2023-06-09 17:55:34 +08:00
//车次窗位置
2023-06-09 17:55:53 +08:00
int32 windowOffset = 6;
2023-06-12 16:47:38 +08:00
//目的地
string destinationId = 7;
//后部车站
string backId = 8;
2023-06-09 14:47:04 +08:00
}