hcong
2024-12-12 9c315b4dbbb9f25d5373d1f228ed441a4e8ccbf7
src/main/kotlin/cn/flightfeather/supervision/business/report/bean/ProAnalysisSummaryResult.kt
@@ -1,5 +1,6 @@
package cn.flightfeather.supervision.business.report.bean
import cn.flightfeather.supervision.domain.ds1.entity.DataProductTownProAnalysis
import java.math.BigDecimal
/**
@@ -54,4 +55,25 @@
    @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
    }
}