26 lines
397 B
C
26 lines
397 B
C
|
#pragma once
|
||
|
#include <string>
|
||
|
|
||
|
using namespace std;
|
||
|
|
||
|
class BaseConfig
|
||
|
{
|
||
|
public:
|
||
|
BaseConfig();
|
||
|
~BaseConfig();
|
||
|
|
||
|
public:
|
||
|
static const string TABLE_NAME;
|
||
|
static const string FIELD_ID;
|
||
|
static const string FIELD_CONFIG_NAME;
|
||
|
static const string FIELD_CONFIG_CODE;
|
||
|
static const string FIELD_CONFIG_VALUE;
|
||
|
|
||
|
public:
|
||
|
int m_id;
|
||
|
string m_ConfigName;
|
||
|
string m_ConfigCode;
|
||
|
string m_ConfigValue;
|
||
|
};
|
||
|
|