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