|
@@ -54,12 +54,12 @@ struct area
|
|
|
int32_t type,int limit_count_vehicle, int limit_time_vehicle)
|
|
|
{
|
|
|
m_area_type=type;
|
|
|
- m_limit_person_second=limit_time_person;
|
|
|
+ m_limit_person_min=limit_time_person;
|
|
|
m_limit_person_count=limit_count_person;
|
|
|
m_scale=scale;
|
|
|
m_mapid=mapid;
|
|
|
m_limit_vehicle_count=limit_count_vehicle;
|
|
|
- m_limit_vehicle_second=limit_time_vehicle;
|
|
|
+ m_limit_vehicle_min=limit_time_vehicle;
|
|
|
}
|
|
|
public:
|
|
|
std::vector<area_business*> m_area_business_list;
|
|
@@ -106,14 +106,14 @@ public:
|
|
|
int m_area_type;
|
|
|
|
|
|
//人卡超时及超员数量(阀值)
|
|
|
- int m_limit_person_second;
|
|
|
+ int m_limit_person_min;
|
|
|
int m_limit_person_count;
|
|
|
//是否人卡超员已有告警
|
|
|
bool m_event_person_count;
|
|
|
bool m_event_person_show_count;
|
|
|
|
|
|
//人卡超时及超员数量(阀值)
|
|
|
- int m_limit_vehicle_second;
|
|
|
+ int m_limit_vehicle_min;
|
|
|
int m_limit_vehicle_count;
|
|
|
//是否人卡超员已有告警
|
|
|
bool m_event_vehicle_count;
|