feiyu02
2024-09-27 72a384981ec78139dbe919597b54efedcc7f33aa
1
2
3
4
5
6
7
8
9
10
11
12
package cn.flightfeather.supervision.business.report.file
 
import cn.flightfeather.supervision.business.report.BaseExcel
import cn.flightfeather.supervision.business.report.BaseTemplate
import cn.flightfeather.supervision.business.report.DataSource
import cn.flightfeather.supervision.business.report.template.ProAnalysisSummary
import cn.flightfeather.supervision.business.report.template.ProDetailSummary
 
class ReportOne(dataSource: DataSource) : BaseExcel(dataSource) {
    override val templates: List<BaseTemplate> = listOf(ProDetailSummary(dataSource), ProAnalysisSummary(dataSource))
    override val fileName: String = "问题与整改汇总分析与动态跟踪清单"
}