feiyu02
2026-01-19 53ce8de426561e7a43847afda23b5e24e6f76c4e
src/main/kotlin/cn/flightfeather/supervision/common/score/ScoreItem.kt
@@ -23,11 +23,9 @@
    var eMonth by Delegates.notNull<Int>()
    val dateUtil = DateUtil()
    fun execute(info: Info): Pair<Int, Int> {
        this.info = info
        sMonth = dateUtil.getStartMonthByPeriod(info.month, 3) ?: 1
        sMonth = DateUtil.getStartMonthByPeriod(info.month, 3) ?: 1
        eMonth = sMonth + 2
        return calScore()
    }