2023-09-04 11:13:10 +08:00
|
|
|
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;
|
2023-09-06 09:58:36 +08:00
|
|
|
int32 flag = 13;
|
2023-09-04 11:13:10 +08:00
|
|
|
}
|