25 lines
737 B
C++
25 lines
737 B
C++
|
|
#pragma once
|
|
/**
|
|
* @file t_rule_cfg.h
|
|
* @brief 算法配置表
|
|
* @author Cat (null.null.null@qq.com)
|
|
* @version 0.1
|
|
* @date 2021-09-17
|
|
*
|
|
* Copyright: Baosight Co. Ltd.
|
|
* DO NOT COPY/USE WITHOUT PERMISSION
|
|
*
|
|
*/
|
|
#include "mix_cc/sql/make_table.h"
|
|
#include <string>
|
|
using namespace mix_cc::sql;
|
|
using namespace std::chrono;
|
|
|
|
MIX_CC_SQL_MAKE_TABLE(T_RULE_CFG, (std::string, ruleId), (std::string, remark),
|
|
(std::string, ruleGroup), (int, algId), (int, flag),
|
|
(std::string, ruleName), (std::string, ruleParam),
|
|
(double, paddingUp), (double, paddingDown),
|
|
(int, TaskSeq), (std::string, eqpid),
|
|
(mix_cc::mix_time_t, toc));
|