From d82140370ef78529ad745356e41bad635a333457 Mon Sep 17 00:00:00 2001 From: tiger_zhou Date: Mon, 4 Sep 2023 11:13:10 +0800 Subject: [PATCH] =?UTF-8?q?=E5=B1=8F=E8=94=BD=E9=97=A8=E9=80=BB=E8=BE=91?= =?UTF-8?q?=E6=9B=B4=E6=94=B9=EF=BC=8C=E5=88=AB=E7=9A=84=E4=BB=A3=E7=A0=81?= =?UTF-8?q?=E8=B0=83=E6=95=B4?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- protos/trainShedule.proto | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) create mode 100644 protos/trainShedule.proto diff --git a/protos/trainShedule.proto b/protos/trainShedule.proto new file mode 100644 index 0000000..c1df6a1 --- /dev/null +++ b/protos/trainShedule.proto @@ -0,0 +1,24 @@ +syntax = "proto3"; + +package alert; + + +//模型的可变的状态数据 +//import "LineNetTrainOffsetDiagram.proto"; +option java_package = "club.joylink.xiannccda.dto.protos"; +option java_outer_classname = "TrainShedule"; +message Plan{ + int32 lineId = 1; + int64 date = 2; + int32 actionId = 3; + string trainId = 4; + string globalId = 5; + int32 stationId = 6; + int32 platformId = 7; + int64 aTime = 8; + int64 dTime = 9; + bool upWay = 10; + int64 timestamp = 11; + //接受时间 + int64 receiveTime = 12; +} \ No newline at end of file