feiyu02
2024-09-27 72a384981ec78139dbe919597b54efedcc7f33aa
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
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.ScoreAnalysisSummary
import cn.flightfeather.supervision.business.report.template.ScoreDetailSummary
 
/**
 * 自动评估结果上传模板
 * @date 2024/9/27
 * @author feiyu02
 */
class TemplateScore(dataSource: DataSource) : BaseExcel(dataSource) {
    override val templates: List<BaseTemplate> = listOf(ScoreDetailSummary(dataSource), ScoreAnalysisSummary(dataSource))
    override val fileName: String = "规范性评估模板"
}