diff --git a/protos/train.proto b/protos/train.proto index 187f070..202e2a9 100644 --- a/protos/train.proto +++ b/protos/train.proto @@ -35,9 +35,9 @@ message TrainInfo { // 列车状态 // int32 mode = 14; state.TrainMode mode = 14; - // 到点 + // 到点 时间戳 精确到秒 10位长度 int64 arriveTime = 15; - // 发点 + // 发点 时间戳 精确到秒 10位长度 int64 departTime = 16; // 速度 float speed = 17; @@ -145,7 +145,7 @@ message TrainRecord{ * true-到达,false-出发 */ bool recordType = 12; - /** 到发时间(7) */ + /** 到发时间(7) 时间戳 精确到秒 10位长度 */ int64 recordTime = 13; }