package com.flightfeather.grid.service
|
|
import com.flightfeather.grid.domain.ds1.entity.ClueConclusion
|
import com.flightfeather.grid.vo.BaseResponse
|
|
interface ClueConclusionService {
|
|
/**
|
* 上报线索结论,线索结论最多只有一个
|
* @param clueConclusion 线索结论
|
*/
|
fun uploadConclusion(clueConclusion: ClueConclusion): Boolean
|
|
/**
|
* 获取线索结论
|
* @param clueId
|
*/
|
fun getClueConclusion(clueId: String, internal: Boolean?): ClueConclusion?
|
|
/**
|
* 推送线索结论至第三方
|
* @param conclusionIdList
|
*/
|
fun pushConclusion(conclusionIdList: List<String>?): Boolean
|
}
|