hcong
2024-11-19 0674dea7dd0e75199c0c200e6a41070c25677082
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
package cn.flightfeather.supervision.lightshare.service
 
import cn.flightfeather.supervision.domain.ds1.entity.Problemtype
import cn.flightfeather.supervision.lightshare.vo.ProblemDetailVo
import cn.flightfeather.supervision.lightshare.vo.ProblemtypeVo
 
 
interface ProblemtypeService {
    fun findOne(id: String): Problemtype
 
    fun findAll(): MutableList<Problemtype>
 
    fun save(problemtype: Problemtype): Int
 
    fun update(problemtype: Problemtype): Int
 
    fun delete(id: String): Int
 
    fun findOneByName(name: String): Problemtype
 
    fun search(problemtype: Problemtype): List<ProblemtypeVo>
 
    fun getBySceneType(sceneTypeId: Int, districtCode: String): List<ProblemDetailVo>
 
    fun search(taskTypeId:Byte, cityCode:String,districtCode:String, sceneTypeId:Byte):List<Problemtype>
}