24 lines
583 B
C++
24 lines
583 B
C++
|
|
#pragma once
|
|
/**
|
|
* @file fv_result_latest.h
|
|
* @brief 视图 最新报警信息
|
|
* @author your name (you@domain.com)
|
|
* @version 0.1
|
|
* @date 2023-12-22
|
|
*
|
|
* Copyright: Baosight Co. Ltd.
|
|
* DO NOT COPY/USE WITHOUT PERMISSION
|
|
*
|
|
*/
|
|
#include "mix_cc/sql/make_table.h"
|
|
#include "mix_cc/type/mix_time.h"
|
|
|
|
#include <string>
|
|
using namespace mix_cc::sql;
|
|
using namespace std::chrono;
|
|
|
|
MIX_CC_SQL_MAKE_TABLE(FV_RESULT_LATEST, (std::string, ruleId),
|
|
(std::string, ruleName), (int, rank),
|
|
(mix_cc::mix_time_t, alarmtime), (short, statuscode));
|