DrivingBehaviorBean.proto 383 B

12345678910111213141516171819
  1. syntax = "proto3";
  2. message DrivingBehaviorBean {
  3. int64 logId = 1;
  4. int32 status = 2;
  5. int32 type = 3;
  6. int32 level = 4;
  7. int32 fatigueLevel = 5;
  8. int32 speed = 6;
  9. int32 altitude = 7;
  10. double latitude = 8;
  11. double longitude = 9;
  12. float direction = 10;
  13. int32 carStatus = 11;
  14. int32 acc = 12;
  15. string alarmNum = 13;
  16. int32 fileCount = 14;
  17. bytes alarmBytes = 15;
  18. }