25 lines
669 B
C
25 lines
669 B
C
|
|
|
||
|
|
|
||
|
|
#pragma once
|
||
|
|
/**
|
||
|
|
* @file t_sample_mag.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 <string>
|
||
|
|
#include "mix_cc/sql/make_table.h"
|
||
|
|
using namespace mix_cc::sql;
|
||
|
|
using namespace std::chrono;
|
||
|
|
|
||
|
|
MIX_CC_SQL_MAKE_TABLE(T_SAMPLE_MAG, (std::string, sampleid),
|
||
|
|
(std::string, ruleId), (mix_cc::mix_time_t, starttime),
|
||
|
|
(mix_cc::mix_time_t, endtime), (int, usable),
|
||
|
|
(int, verify), (std::string, result),
|
||
|
|
(std::string, type));
|