1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
| #ifndef EXPORTTOFILE_H
| #define EXPORTTOFILE_H
|
| #include <QObject>
| #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
|
|