21 lines
556 B
C
21 lines
556 B
C
|
|
#pragma once
|
|||
|
|
/**
|
|||
|
|
* @file t_eqp_data.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(T_EQP_DATA, (std::string, eqpId), (std::string, flag),
|
|||
|
|
(int, ruletype), (double, value),(int,eqpidtype));
|