1234567891011121314151617181920212223242526272829303132333435363738 |
- /*
- * @Description:
- * @Version: 1.0
- * @Autor: lishengyin
- * @Date: 2021-10-19 16:33:40
- * @LastEditors: lishengyin
- * @LastEditTime: 2021-10-19 16:34:48
- */
- #pragma once
- #include <iostream>
- #include <map>
- #include <list>
- using namespace std;
- class CarInfoData
- {
- public:
- // CarId
- int CarId;
- // 数据源地址URL:识别范围
- map<std::string,std::string> DataSources;
- // 空载载荷
- int32_t NoLoad;
- // 动态载荷
- int32_t DynamicLoad;
- // 拥挤程度
- int Grade;
- // 推理时间
- std::string DataTime;
- // 识别结果
- int Num;
- public:
- CarInfoData(){}
- ~CarInfoData(){}
- };
|