| | |
| | | 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.* |
| | | import cn.flightfeather.supervision.business.report.bean.BaseTemplateResult |
| | | import cn.flightfeather.supervision.business.report.bean.ProTypeRankSummaryResult |
| | | import cn.flightfeather.supervision.common.utils.ExcelUtil |
| | | import kotlin.math.round |
| | | |
| | | open class ProTypeRankSummary(dataSource: DataSource) : BaseTemplate(dataSource) { |
| | | override val cols: List<BaseCols> = listOf() |
| | | override val templateName: String = "问题与整改分类排名" |
| | | |
| | | override fun execute() { |
| | | override var resultObjects: MutableList<BaseTemplateResult> = mutableListOf(ProTypeRankSummaryResult()) |
| | | override fun genData() { |
| | | dataSource.reset() |
| | | |
| | | val proMap = mutableMapOf<String?, Summary>() |