1234567891011121314151617181920212223242526272829303132333435363738394041 |
- // *****************************************************************************
- // 版权所有(C)2023~2099 上海骄成超声波技术有限公司
- // 保留所有权利
- // *****************************************************************************
- // 作者 : 杨坚
- // 版本 : 1.0
- // 功能说明:
- // 获取设置样式主题
- // *****************************************************************************
- #ifndef __GEN_INTERFACE_H__
- #define __GEN_INTERFACE_H__ 1
- #include <QJsonObject>
- #include <QtSql>
- #include <QSqlDatabase>
- #include <QSqlQuery>
- #include <QSqlError>
- class GetMainUiConfigFormDB
- {
- public:
- //从数据库中获取systemconfig表中的信息
- QJsonObject getInfofromDb();
- int getLanguageValue();
- int getThemeValue();
- void setLanguageValue(int data);
- void setThemeValue(int data);
- private:
- /**执行sql 通用语句
- */
- bool checkDatabase();
- int getConfigValue(const QString& function);
- bool setConfigValue(const QString& function, int value);
- };
- #endif //__GEN_INTERFACE_H__
|