22 lines
462 B
C
22 lines
462 B
C
|
|
|
||
|
|
|
||
|
|
#pragma once
|
||
|
|
/**
|
||
|
|
* @file t_sample_stat.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_STAT, (std::string, sampleid), (double, X),
|
||
|
|
(size_t, count));
|