25 lines
754 B
C++
25 lines
754 B
C++
#pragma once
|
|
/**
|
|
* @file FV_DSC_PDI_DATA.h
|
|
* @brief 数字钢卷-钢卷信息
|
|
* @author your name (you@domain.com)
|
|
* @version 0.1
|
|
* @date 2025-11-07
|
|
*
|
|
* Copyright: Baosight Co. Ltd.
|
|
* DO NOT COPY/USE WITHOUT PERMISSION
|
|
*
|
|
*/
|
|
#include "mix_cc/sql/make_table.h"
|
|
#include "mix_cc/type/mix_time.h"
|
|
#include <string>
|
|
using namespace mix_cc::sql;
|
|
using namespace std::chrono;
|
|
|
|
MIX_CC_SQL_MAKE_TABLE(FV_DSC_PDI_DATA, (std::string, entid),
|
|
(std::string, extid), (double, hentry),
|
|
(double, exthickave), (double, width),
|
|
(double, weightcoil), (double, coillenth),
|
|
(double, diameterinside), (double, diameteroutside),
|
|
(std::string, steelgrade));
|