2025-03-13 13:51:33 +08:00

25 lines
816 B
C++
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

/**********************************************************************************
* @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