feiyu02
2025-09-17 8c15c9cc0d6474ed77e313258f9b09f7f2d6366e
src/main/kotlin/cn/flightfeather/supervision/lightshare/service/EvaluationService.kt
@@ -7,6 +7,9 @@
import cn.flightfeather.supervision.lightshare.vo.AutoScoreResultVo
import cn.flightfeather.supervision.lightshare.vo.BaseResponse
import cn.flightfeather.supervision.lightshare.vo.EvaluateResVo
import org.springframework.web.multipart.MultipartFile
import springfox.documentation.annotations.ApiIgnore
import javax.servlet.http.HttpServletResponse
interface EvaluationService {
@@ -39,4 +42,10 @@
    fun autoEvaluate(areaVo: AreaVo): BgTaskStatus?
    fun findAutoEvaluation(areaVo: AreaVo): List<AutoScoreResultVo?>?
    fun downloadAutoEvaluation(areaVo: AreaVo, forceUpdate: Boolean, response: HttpServletResponse): Boolean
    fun downloadAutoEvaTemplate(areaVo: AreaVo, response: HttpServletResponse)
    fun uploadAutoEvaluation(areaVo: AreaVo, file: MultipartFile): Boolean
}