21 lines
522 B
C++
21 lines
522 B
C++
/**
|
|
* @file t_rule_sample_curve.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
|
|
*
|
|
*/
|
|
#pragma once
|
|
#include <string>
|
|
#include "mix_cc/sql/make_table.h"
|
|
using namespace mix_cc::sql;
|
|
using namespace std::chrono;
|
|
|
|
MIX_CC_SQL_MAKE_TABLE(T_RULE_SAMPLE_CURVE, (std::string, ruleid), (int, flag),
|
|
(mix_cc::mix_time_t, sampledate), (std::string, curve),
|
|
(size_t, weight));
|