#ifndef EXPORTTOFILE_H #define EXPORTTOFILE_H #include #include "struct_data.h" // 统一写好导出接口,提供给相应模块使用 class ExportToFile : public QObject { Q_OBJECT public: explicit ExportToFile(QObject *parent = nullptr); int saveToExcelFromComInfo(ComInfo &info); // 封面信息导出 int saveToExcelFromThreeMergePro(); // 3和1导出 int saveToExcelFromNeiShenZonghe(); // 内审综合导出 signals: public slots: }; #endif // EXPORTTOFILE_H