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

26 lines
518 B
Protocol Buffer
Raw Normal View History

2023-06-09 14:47:04 +08:00
syntax = "proto3";
2023-06-13 09:51:18 +08:00
package diagram;
option java_package = "club.joylink.xiannccda.dto.protos";
option java_outer_classname = "LineNetTrainOffsetDiagramProto";
2023-06-09 14:47:04 +08:00
//线网车辆位置
2023-06-13 09:51:18 +08:00
message LineNetTrainOffsetDiagram{
2023-06-09 14:47:04 +08:00
//线路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
}