From c1becf4cbd2e99601ce011c14b8742427249cfb4 Mon Sep 17 00:00:00 2001 From: feiyu02 <risaku@163.com> Date: 星期二, 09 一月 2024 17:25:05 +0800 Subject: [PATCH] 1. 多项调整 --- src/main/kotlin/cn/flightfeather/supervision/business/autooutput/score/construction/CsScoreItem1.kt | 6 +++--- 1 files changed, 3 insertions(+), 3 deletions(-) diff --git a/src/main/kotlin/cn/flightfeather/supervision/business/autooutput/score/construction/CsScoreItem1.kt b/src/main/kotlin/cn/flightfeather/supervision/business/autooutput/score/construction/CsScoreItem1.kt index 80df22a..4f6bbeb 100644 --- a/src/main/kotlin/cn/flightfeather/supervision/business/autooutput/score/construction/CsScoreItem1.kt +++ b/src/main/kotlin/cn/flightfeather/supervision/business/autooutput/score/construction/CsScoreItem1.kt @@ -33,7 +33,7 @@ * 1.闂閮ㄥ垎鏁存敼鎴栦笉鍙婃椂鎻愪緵鏉愭枡 * 2.闂鏃犳暣鏀� */ - override fun otherProblem(size: Int): Int? { + override fun otherProblem(size: Int): List<Int>? { val p = problemlistMapper.selectByExample(Example(Problemlist::class.java).apply { createCriteria().andEqualTo("stguid", evaluationScene.subTask.value?.stguid) // .andGreaterThanOrEqualTo("time", info.sTime) @@ -49,8 +49,8 @@ } } return when { - changed == 0 && total > 0 -> 1 - changed < total -> 0 + changed == 0 && total > 0 -> listOf(1) + changed < total -> listOf(0) else -> null } } -- Gitblit v1.9.3