AlarmBean.proto 825 B

12345678910111213141516171819202122232425262728293031
  1. syntax = "proto3";
  2. import "GatherGpsBean.proto";
  3. import "GatherObdBean.proto";
  4. import "GatherSensorBean.proto";
  5. message AlarmBean {
  6. int32 alarmType = 1;
  7. int64 pullouttime = 2;
  8. int32 accTotalTimes = 3;
  9. int32 decTotalTimes = 4;
  10. int32 sharpTotalTimes = 5;
  11. int32 changeLaneTotalTimes = 6;
  12. int32 duration = 7;
  13. int32 fuel = 8;
  14. int32 turn = 9;
  15. int32 sensorStatus = 10;
  16. int32 gatherType = 11;
  17. repeated GatherGpsBean gpsGather = 12;
  18. repeated GatherObdBean obdDataGather = 13;
  19. repeated GatherSensorBean sensorGatherTens = 14;
  20. int32 distance = 15;
  21. int32 maxEngineSpeed = 16;
  22. int32 minEngineSpeed = 17;
  23. int32 maxSpeed = 18;
  24. int32 minSpeed = 19;
  25. int32 maxTemperature = 20;
  26. int64 startTime = 21;
  27. int64 endTime = 22;
  28. int32 upType = 23;
  29. int32 collisionCount = 24;
  30. }