// ***************************************************************************** // 版权所有(C)2023~2099 上海骄成超声波技术有限公司 // 保留所有权利 // ***************************************************************************** // 作者 : 杨坚 // 版本 : 1.0 // 功能说明: // 获取设置样式主题 // ***************************************************************************** #ifndef __GEN_INTERFACE_H__ #define __GEN_INTERFACE_H__ 1 #include #include #include #include #include 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__