eis/eqpalg/table_struct/t_lov_fcode.h

22 lines
491 B
C++

#pragma once
/**
* @file t_lov_fcode.h
* @brief 传动故障代码对应表
* @author your name (you@domain.com)
* @version 0.1
* @date 2024-03-21
*
* 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_LOV_FCODE, (std::string, name), (std::string, content),
(int, type), (int, code), (bool, usable));