1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
package cn.flightfeather.supervision.business.report.template
 
import cn.flightfeather.supervision.business.report.BaseCols
import cn.flightfeather.supervision.business.report.BaseTemplate
import cn.flightfeather.supervision.business.report.DataSource
import cn.flightfeather.supervision.business.report.cols.*
 
class ScoreDetailSummary(dataSource: DataSource) : BaseTemplate(dataSource) {
    override val cols: List<BaseCols> = listOf(
        ColSceneName(), ColTown(), ColStatus(), ColInspectionInfo(listOf(0, 1)),
        ColTotalGrade(),
        ColItemGrade()
    )
    override val templateName: String = "规范性评估详情表"
}