riku
2022-06-17 3a5c011d9509d3bc0367921f463676c81ff2e374
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
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 findByInspectionId(inspectionId:String):List<Evaluation>
}