hcong
2024-12-17 09c8120288ea7df454c10d67911ab8643f2f4235
src/main/kotlin/cn/flightfeather/supervision/domain/ds1/repository/ProblemRep.kt
@@ -8,6 +8,15 @@
@Repository
class ProblemRep(private val problemlistMapper: ProblemlistMapper) {
    fun insert(problemlist: Problemlist): Int {
        return problemlistMapper.insert(problemlist)
    }
    fun update(problemlist: Problemlist): Int {
        return problemlistMapper.updateByPrimaryKey(problemlist)
    }
    /**
     * 获取各场景的问题和整改数量统计
     */