You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
43 lines
1.0 KiB
Java
43 lines
1.0 KiB
Java
package com.supervision.police.service;
|
|
|
|
import com.supervision.common.domain.R;
|
|
import com.supervision.police.dto.AnalyseCaseDTO;
|
|
import com.supervision.police.dto.CaseStatus;
|
|
import com.supervision.police.dto.caseScore.CaseScore;
|
|
import com.supervision.police.dto.caseScore.CaseScoreDetailDTO;
|
|
import jakarta.servlet.http.HttpServletResponse;
|
|
|
|
public interface ModelService {
|
|
|
|
R<?> analyseCase(AnalyseCaseDTO analyseCaseDTO);
|
|
|
|
|
|
/**
|
|
* 获取案件详情
|
|
* @param caseId 案件id
|
|
* @return
|
|
*/
|
|
CaseScoreDetailDTO caseScoreDetail(String caseId);
|
|
|
|
/**
|
|
* 获取案件得分详情
|
|
* @param caseId 案件id
|
|
* @return 案件得分详情
|
|
*/
|
|
CaseScore caseScoreByCaseId(String caseId);
|
|
|
|
/**
|
|
* 获取案件数据状态
|
|
* @param caseId 案件id
|
|
* @return
|
|
*/
|
|
CaseStatus getCaseDateStatus(String caseId);
|
|
|
|
/**
|
|
* 导出案件得分详情功能
|
|
* @param caseId 案件id
|
|
* @param response
|
|
*/
|
|
void exportCaseScoreDetail(String caseId, HttpServletResponse response);
|
|
}
|