feiyu02
2022-06-28 5670e4a15fba292ef5f8fb90e96072de976bb621
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.entity.Evaluationrule
import cn.flightfeather.supervision.domain.enumeration.SceneType
 
 
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 getRule(erGuid: String? = null, sceneTypeId: Int = SceneType.Industrial.value, erType: Int?): List<Evaluationrule>
 
}