30 lines
458 B
C
30 lines
458 B
C
|
#pragma once
|
||
|
#include <string>
|
||
|
|
||
|
using namespace std;
|
||
|
|
||
|
class IOVersion
|
||
|
{
|
||
|
public:
|
||
|
IOVersion(int id,int mid,int vid,string vcode);
|
||
|
~IOVersion();
|
||
|
|
||
|
|
||
|
public:
|
||
|
int m_Id;
|
||
|
int m_MachineId;
|
||
|
int m_VersionId;
|
||
|
string m_VersionCode;
|
||
|
|
||
|
public:
|
||
|
static const string TABLE_NAME;
|
||
|
static const string FIELD_ID;
|
||
|
static const string FIELD_MACHINE_ID;
|
||
|
static const string FIELD_VERSION_ID;
|
||
|
static const string FIELD_VERSION_CODE;
|
||
|
|
||
|
//static const int IO_NEWEST_CODE;
|
||
|
};
|
||
|
|
||
|
|