hcong
2024-12-10 82baf5d28ce79aa4d3b64956207d247596726924
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 = "问题与整改汇总分析与动态跟踪清单"
}