BatteryAccum.proto 474 B

1234567891011121314151617181920
  1. syntax = "proto3";
  2. message BatteryAccum {
  3. int32 soc = 1;
  4. int32 soh = 2;
  5. int64 SOH_AlgUnexTime = 3;
  6. string CHG_AHaccum = 4;
  7. string CHG_PHaccum = 5;
  8. string DSG_AHaccum = 6;
  9. string DSG_PHaccum = 7;
  10. string OverTemp_CHG_AHaccum = 8;
  11. string OverTemp_CHG_PHaccum = 9;
  12. int32 totalOnlineDays = 10;
  13. int32 totalMileage = 11;
  14. int32 totalOverChargeCount = 12;
  15. int32 totalOverUseCount = 13;
  16. int32 totalLoopCount = 14;
  17. string energyFeedAh = 15;
  18. string energyFeedWh = 16;
  19. }