#ifndef SIZHU_STATISTICS_PARA_H
|
#define SIZHU_STATISTICS_PARA_H
|
#include "sys.h"
|
|
#pragma pack(1)
|
typedef struct statistical_data_t
|
{
|
double current_hour_work_cumulative_flow; // µ±Ç°Ð¡Ê±
|
double current_hour_standard_cumulative_flow;
|
double last_hour_work_cumulative_flow; // ǰһСʱ
|
double last_hour_standard_cumulative_flow;
|
double current_day_work_cumulative_flow;
|
double current_day_standard_cumulative_flow;
|
double last_day_work_cumulative_flow;
|
double last_day_standard_cumulative_flow;
|
double current_month_work_cumulative_flow;
|
double current_month_standard_cumulative_flow;
|
double last_month_work_cumulative_flow;
|
double last_month_standard_cumulative_flow;
|
|
|
//ÒÔÏÂΪ±£´æµÄ»ùÊý£¬Ã¿´Î¼ÆËãÈ¡µ±Ç°Öµ¼õÈ¥»ùÊýµ±×öµ±Ç°ÈÕ¡¢ÔµÄÓÃÁ¿£¬µ±ÈÕ¡¢Ô·¢Éú¸Ä±äʱ£¬µ±Ç°ÓÃÁ¿¼ÆËãÍêÖ®ºóÔÙ¸³¸øÇ°Ò»ÓÃÁ¿£¬µ±Ç°ÓÃÁ¿ÖØÐ±£´æ»ùÊý£¬ÖØÐ¼ÆËã¡£
|
double current_hour_work_cumulative_flow_Base; // µ±Ç°Ð¡Ê±
|
double current_hour_standard_cumulative_flow_Base;
|
// double last_hour_work_cumulative_flow_Base; // ǰһСʱ
|
// double last_hour_standard_cumulative_flow_Base;
|
double current_day_work_cumulative_flow_Base;
|
double current_day_standard_cumulative_flow_Base;
|
// double last_day_work_cumulative_flow_Base;
|
// double last_day_standard_cumulative_flow_Base;
|
double current_month_work_cumulative_flow_Base;
|
double current_month_standard_cumulative_flow_Base;
|
// double last_month_work_cumulative_flow_Base;
|
// double last_month_standard_cumulative_flow_Base;
|
}STATISTICAL_DATA_T;
|
#define STATISTICAL_DATA_T_LENGTH sizeof(STATISTICAL_DATA_T)
|
|
#pragma pack()
|
|
#endif
|