屏蔽门逻辑更改,别的代码调整

This commit is contained in:
tiger_zhou 2023-09-04 11:13:10 +08:00
parent 7aebba13bf
commit d82140370e

24
protos/trainShedule.proto Normal file
View File

@ -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;
}