25 lines
816 B
C
25 lines
816 B
C
|
|
/**********************************************************************************
|
|||
|
|
* @file ApcIfRdbTableDef.h
|
|||
|
|
* @brief 功率控制内存表定义
|
|||
|
|
* @author caodingfa
|
|||
|
|
* @versiong 1.0
|
|||
|
|
* @date 2024-8-1
|
|||
|
|
**********************************************************************************/
|
|||
|
|
|
|||
|
|
#pragma once
|
|||
|
|
|
|||
|
|
namespace iot_app
|
|||
|
|
{
|
|||
|
|
typedef struct _SApcCurveYear
|
|||
|
|
{
|
|||
|
|
int year_rule_id; //年规则ID
|
|||
|
|
int type_id; //类型ID
|
|||
|
|
int month_begin; //开始月
|
|||
|
|
int day_begin; //开始日,包含该日,即从该日0点起
|
|||
|
|
int month_end; //结束月
|
|||
|
|
int day_end; //结束日,包含该日,即到下一日0点结束
|
|||
|
|
int excption; //是否例外
|
|||
|
|
}SApcCurveYear,*PSApcCurveYear;
|
|||
|
|
|
|||
|
|
} //< namespace iot_app
|