21 lines
533 B
C++
21 lines
533 B
C++
/*********************************************************************
|
|
*
|
|
* ÎÄ ¼þ: DBAlarm.h Æô¶¯Îļþ
|
|
*
|
|
* °æÈ¨ËùÓÐ: Shanghai Baosight Software Co., Ltd.
|
|
*********************************************************************/
|
|
#ifndef _H_DB_ALARM_h
|
|
#define _H_DB_ALARM_h
|
|
#include <zcus/IHDBTools.h>
|
|
|
|
namespace baosight
|
|
{
|
|
class DBAlarm
|
|
{
|
|
public:
|
|
static int Insert(const string& ruleid,const string& rulename, const string& group,const string& alarmmsg, const HD3TimeRegion& timeRegion);
|
|
};
|
|
}
|
|
|
|
#endif
|