XNSim/XNInterfaceGenServer/GetInterfaceData.h

18 lines
390 B
C++
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

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