| | |
| | | package cn.flightfeather.supervision.business.report.bean |
| | | |
| | | import cn.flightfeather.supervision.domain.ds1.entity.DataProductTownProAnalysis |
| | | import java.math.BigDecimal |
| | | |
| | | /** |
| | |
| | | |
| | | @ExcelHead(16, "拟列入重点监管占比") |
| | | var focusScenePer: BigDecimal? = null |
| | | |
| | | override fun convertToDBEntity(): DataProductTownProAnalysis { |
| | | val entity = DataProductTownProAnalysis() |
| | | entity.formIndex = this.formIndex |
| | | entity.townName = this.sceneTownname |
| | | entity.sceneType = this.sceneType |
| | | entity.sceneCount = this.sceneCount |
| | | entity.inactiveSceneCount = this.inactiveScenes |
| | | entity.activeSceneCount = this.activeScenes |
| | | entity.changeSceneCount = this.changeScenes |
| | | entity.changeScenePer = this.changeScenePer |
| | | entity.proCount = this.proNum |
| | | entity.proPer = this.proPer |
| | | entity.changeCount = this.changeNum |
| | | entity.changePer = this.changePer |
| | | entity.changeSceneRank = this.changeSceneRank |
| | | entity.proChangeRank = this.proChangeRank |
| | | entity.focusSceneCount = this.focusSceneNum |
| | | entity.focusScenePer = this.focusScenePer |
| | | return entity |
| | | } |
| | | } |