package cn.flightfeather.supervision.lightshare.service
|
|
import cn.flightfeather.supervision.domain.ds1.entity.Evaluation
|
import cn.flightfeather.supervision.lightshare.vo.AreaVo
|
|
|
interface EvaluationService {
|
fun findOne(id:String): Evaluation
|
|
fun findAll(): MutableList<Evaluation>
|
|
fun save(evaluation: Evaluation): Int
|
|
fun update(evaluation: Evaluation): Int
|
|
fun delete(id:String): Int
|
|
fun getRankOfSense(tguid: String, scensetypeid: String?, ruletypeid: ByteArray?): List<Evaluation>
|
|
fun getRankOfTown(tguid: String, scensetypeid: String?):List<AreaVo>
|
|
fun getTopTaskByScene(sceneId: String?): String?
|
|
fun autoScore(districtCode: String, time: String): List<String>
|
|
fun autoScore2(subTaskId: String): List<String>
|
|
fun autoScore3(tGuid: String, sceneTypeId: String): String
|
|
fun findByInspectionId(inspectionId:String):List<Evaluation>
|
}
|