shkjdb.h 648 B

123456789101112131415161718
  1. #ifndef SHKJDB_H
  2. #define SHKJDB_H
  3. #include <QtCore>
  4. #include "sncdatabase_global.h"
  5. class SNCDATABASESHARED_EXPORT ShkjDB
  6. {
  7. public:
  8. ShkjDB();
  9. //实号快检模块所需要的数据库访问接口
  10. static int updateShkjCheckInfos(QMultiMap<QString,QString> maps,QString userCode);
  11. static QMultiMap<QString,QString> getShkjCheckInfos(QString userCode);
  12. static QMultiMap<QString,QString> getShkjCheckInfos(QString userCode,QString dealstatus);
  13. static int updateShkjCachePath(QString srvID,QString cachePath);
  14. static QString getShkjCachePath(QString srvID);
  15. static int delShkjByID(QString srvID);
  16. };
  17. #endif // SHKJDB_H