NettyDataDefine.h 641 B

1234567891011121314151617181920212223242526272829303132333435363738
  1. /*
  2. * @Description:
  3. * @Version: 1.0
  4. * @Autor: lishengyin
  5. * @Date: 2021-10-19 16:33:40
  6. * @LastEditors: lishengyin
  7. * @LastEditTime: 2021-10-19 16:34:48
  8. */
  9. #pragma once
  10. #include <iostream>
  11. #include <map>
  12. #include <list>
  13. using namespace std;
  14. class CarInfoData
  15. {
  16. public:
  17. // CarId
  18. int CarId;
  19. // 数据源地址URL:识别范围
  20. map<std::string,std::string> DataSources;
  21. // 空载载荷
  22. int32_t NoLoad;
  23. // 动态载荷
  24. int32_t DynamicLoad;
  25. // 拥挤程度
  26. int Grade;
  27. // 推理时间
  28. std::string DataTime;
  29. // 识别结果
  30. int Num;
  31. public:
  32. CarInfoData(){}
  33. ~CarInfoData(){}
  34. };