feiyu02
2022-07-28 e844ef2fdab88508e7dff4bb9e7b1632fcce15b2
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
30
31
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>
}