| 123456789101112131415161718 |
- #ifndef SHKJDB_H
- #define SHKJDB_H
- #include <QtCore>
- #include "sncdatabase_global.h"
- class SNCDATABASESHARED_EXPORT ShkjDB
- {
- public:
- ShkjDB();
- //实号快检模块所需要的数据库访问接口
- static int updateShkjCheckInfos(QMultiMap<QString,QString> maps,QString userCode);
- static QMultiMap<QString,QString> getShkjCheckInfos(QString userCode);
- static QMultiMap<QString,QString> getShkjCheckInfos(QString userCode,QString dealstatus);
- static int updateShkjCachePath(QString srvID,QString cachePath);
- static QString getShkjCachePath(QString srvID);
- static int delShkjByID(QString srvID);
- };
- #endif // SHKJDB_H
|