| | |
| | | import cn.flightfeather.supervision.common.utils.ExcelUtil |
| | | |
| | | //监管详情 |
| | | class ColInspectionInfo() : BaseCols() { |
| | | class ColInspectionInfo(chooseIndexList: List<Int> = emptyList()) : BaseCols(chooseIndexList) { |
| | | override fun onHeads(dataSource: DataSource): MutableList<MutableList<ExcelUtil.MyCell>> { |
| | | return mutableListOf(mutableListOf( |
| | | return mutableListOf( |
| | | mutableListOf( |
| | | ExcelUtil.MyCell("监管时间"), |
| | | ExcelUtil.MyCell("巡查人员"), |
| | | ExcelUtil.MyCell("问题类型"), |
| | |
| | | ExcelUtil.MyCell("问题审核占比"), |
| | | ExcelUtil.MyCell("整改审核数"), |
| | | ExcelUtil.MyCell("整改审核占比"), |
| | | )) |
| | | ) |
| | | ) |
| | | } |
| | | |
| | | override fun onOneRow(rowData: DataSource.RowData): List<Any> { |
| | |
| | | listOf( |
| | | pType, pDes, pLoc, pNum, changeTime, pChanged, changedProblem, cNum, |
| | | unChangedProblem, unChangeNum, changePercent, checkStatus, pCheckTime, cCheckTime, |
| | | pCheckNum, pCheckPer, cCheckNum, cCheckPer |
| | | pCheckNum, pCheckPer, cCheckNum, cCheckPer |
| | | ) |
| | | ) |
| | | } |