eis/eqpalg/table_struct/t_sample_fit.h

22 lines
470 B
C++
Raw Permalink Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

#pragma once
/**
* @file t_sample_fit.h
* @brief X Y样本拟合/相关性
* @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_FIT, (std::string, sampleid), (double, X),
(double, Y), (int, Seq));