feiyu02
2025-09-30 a3cc1d220f8a1de11874bebceba0130d32157ff1
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
}