Riku
2024-08-13 6e1095e946997e406926c204ceeb5c820dbd07c1
1
2
3
4
5
6
7
8
9
10
11
12
13
14
package cn.flightfeather.supervision.domain.ds1.repository
 
import cn.flightfeather.supervision.domain.ds1.mapper.ProblemlistMapper
import cn.flightfeather.supervision.lightshare.vo.SceneProblemSummary
import org.springframework.stereotype.Repository
 
@Repository
class ProblemRep(private val problemlistMapper: ProblemlistMapper) {
 
    fun getSceneProSummary(topTaskId: String, sceneTypeId: String?, sort: String?, sortBy: String):
            List<SceneProblemSummary> {
        return problemlistMapper.getSceneProSummary(topTaskId, sceneTypeId, sort, sortBy)
    }
}