Riku
2024-09-28 bda3bf8923acb5216f6f46b5d903cac24c842143
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
package cn.flightfeather.supervision.lightshare.service
 
import cn.flightfeather.supervision.domain.ds1.entity.Evaluationrule
import cn.flightfeather.supervision.lightshare.vo.AreaEvaVo
import cn.flightfeather.supervision.lightshare.vo.AreaVo
 
 
interface EvaluationruleService {
    fun findOne(id:String): Evaluationrule
 
    fun findAll(): MutableList<Evaluationrule>
 
    fun save(evaluationrule: Evaluationrule): Int
 
    fun update(evaluationrule: Evaluationrule): Int
 
    fun delete(id:String): Int
 
    fun findBySpecificRule(tasktypeid: Byte?, scensetypeid: Byte?, districtcode: String?): Evaluationrule?
 
    fun find(areaVo: AreaEvaVo): List<Evaluationrule?>
}