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

21 lines
408 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;
//车组号
string Group_id = 2;
//方向
int32 dir = 3;
//是否删除
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-09 14:47:04 +08:00
}