22 lines
582 B
C
22 lines
582 B
C
|
|
#pragma once
|
||
|
|
/**
|
||
|
|
* @file fv_pdi.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"
|
||
|
|
#include "mix_cc/type/mix_time.h"
|
||
|
|
using namespace mix_cc::sql;
|
||
|
|
using namespace std::chrono;
|
||
|
|
|
||
|
|
MIX_CC_SQL_MAKE_TABLE(FV_PDI, (std::string, entId), (double, length),
|
||
|
|
(double, witdh), (double, thick), (double, weight),
|
||
|
|
(mix_cc::mix_time_t, startime));
|