TaximeterBean.proto 532 B

123456789101112131415161718192021222324
  1. syntax = "proto3";
  2. import "GpsBean.proto";
  3. message TaximeterBean {
  4. GpsBean aboardGps = 1;
  5. int64 aboardGpsTime = 2;
  6. GpsBean arriveGps = 3;
  7. int64 arriveGpsTime = 4;
  8. string orderId = 5;
  9. string evaluateId = 6;
  10. int32 evaluate = 7;
  11. string plate = 8;
  12. string businessLicense = 9;
  13. string driverLicense = 10;
  14. string aboardTime = 11;
  15. string arriveTime = 12;
  16. double mileage = 13;
  17. double emptyMileage = 14;
  18. double extraCharge = 15;
  19. string waitingTime = 16;
  20. double payAmount = 17;
  21. int64 trainNumber = 18;
  22. int32 payType = 19;
  23. }