17 lines
307 B
C
17 lines
307 B
C
|
#pragma once
|
||
|
#include "BaseDao.h"
|
||
|
#include "../bean/PrepareJobCfg.h"
|
||
|
#include <map>
|
||
|
|
||
|
class PrepareJobCfgDao : public BaseDao
|
||
|
{
|
||
|
public:
|
||
|
PrepareJobCfgDao(SQLite::Database* pdb);
|
||
|
~PrepareJobCfgDao();
|
||
|
void CreateTable();
|
||
|
|
||
|
void Find(int mt,map<int ,bool>& cfgs);
|
||
|
void Save(int mt,map<int ,bool>& cfgs);
|
||
|
};
|
||
|
|