feiyu02
2025-07-30 a700aeb0a07d11da1e6b2ae999983ba17a415c70
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
package cn.flightfeather.supervision.lightshare.service
 
import cn.flightfeather.supervision.common.utils.Constant
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>
}