| | |
| | | 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.ColGrade |
| | | import cn.flightfeather.supervision.business.report.cols.ColSceneName |
| | | import cn.flightfeather.supervision.business.report.cols.ColTown |
| | | import cn.flightfeather.supervision.business.report.cols.* |
| | | |
| | | class ScoreDetailSummary(dataSource: DataSource) : BaseTemplate(dataSource) { |
| | | override val cols: List<BaseCols> = listOf(ColSceneName(), ColTown(), ColGrade()) |
| | | override val cols: List<BaseCols> = listOf( |
| | | ColSceneName(), ColTown(), ColStatus(), ColInspectionInfo(listOf(0, 1)), |
| | | ColTotalGrade(), |
| | | ColItemGrade() |
| | | ) |
| | | override val templateName: String = "规范性评估详情表" |
| | | } |