forked from SZV10X_Software/SZV103_FM33A0xxEV_SiZhu

周巍
2024-04-11 91ef77c00ed797b1048c5187f416e351e646a009
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
#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