18 lines
390 B
C
18 lines
390 B
C
|
#pragma once
|
|||
|
|
|||
|
#include "PublicDefine.h"
|
|||
|
|
|||
|
/**
|
|||
|
* @brief 接口数据读取类,用于从SQLite数据库中读取接口信息
|
|||
|
*/
|
|||
|
class GetInterfaceData
|
|||
|
{
|
|||
|
public:
|
|||
|
/**
|
|||
|
* @brief 从指定表中读取接口数据
|
|||
|
* @param tableName 数据库表名
|
|||
|
* @return 接口数据
|
|||
|
*/
|
|||
|
static AllInterfaceData getInterfaceData(const std::string &tableName, std::string &errorMsg);
|
|||
|
};
|