道路线索应急巡查系统服务后台
feiyu02
2025-09-30 84569abda51ecf6c5549dec4cadee8d043422379
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
32
package com.flightfeather.grid.service
 
import com.flightfeather.grid.domain.ds1.entity.ClueTask
import com.flightfeather.grid.vo.ClueInternalTaskVo
import com.flightfeather.grid.vo.ClueTaskOptions
import com.flightfeather.grid.vo.ClueTaskSummaryVo
import com.flightfeather.grid.vo.DataHead
 
/**
 * 线索任务相关服务
 * @date 2025/4/18
 * @author feiyu02
 */
interface ClueTaskService {
 
    fun createInternalClueTask(clueInternalTaskVo: ClueInternalTaskVo): Int
 
    fun createClueTask(clueTask: ClueTask): Int
 
    fun updateClueTask(clueTask: ClueTask): Int
 
    fun getClueTask(clueTask: ClueTask): List<ClueTask?>
 
    fun searchClueTask(options: ClueTaskOptions, page: Int?, perPage: Int?): Pair<DataHead, List<ClueTask?>>
 
    fun deleteClueTask(clueTask: ClueTask): Int
 
    fun getClueTaskSummary(options: ClueTaskOptions): ClueTaskSummaryVo
 
    fun finishClueTask(clueTaskId: String): Int
 
}