DPS/include/CommonDataPublic.h

31 lines
417 B
C
Raw Permalink Normal View History

2025-06-23 10:41:33 +08:00
#pragma once
#include <string>
#include <iostream>
#include <list>
using namespace std;
namespace DBPlatformSpace
{
2025-06-23 18:01:09 +08:00
#define ODI __declspec(dllexport) //外部数据接口 Open Data Interface
2025-06-23 10:41:33 +08:00
#define FALSE 0
#define TRUE 1
2025-06-23 18:01:09 +08:00
///接口执行状态返回信息
2025-06-23 10:41:33 +08:00
struct ResultMsg
{
2025-06-23 18:01:09 +08:00
int rCode; ///<状态码
string rMsg; ///<状态字符串信息
2025-06-23 10:41:33 +08:00
ResultMsg()
{
rCode = 0;
rMsg = "";
}
};
}