2023-09-13 19:08:38 +08:00
|
|
|
package com.ruoyi.wisdomarbitrate.service;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
import com.ruoyi.common.core.domain.AjaxResult;
|
2023-09-18 09:04:50 +08:00
|
|
|
import com.ruoyi.wisdomarbitrate.domain.CaseApplication;
|
2023-09-13 19:08:38 +08:00
|
|
|
import com.ruoyi.wisdomarbitrate.domain.vo.CaseEvidenceVO;
|
|
|
|
|
import org.springframework.web.multipart.MultipartFile;
|
|
|
|
|
|
|
|
|
|
import java.util.List;
|
|
|
|
|
|
|
|
|
|
public interface ICaseEvidenceService {
|
|
|
|
|
|
2023-09-18 09:04:50 +08:00
|
|
|
AjaxResult getCaseDetailsById(Long id,String userName);
|
2023-09-13 19:08:38 +08:00
|
|
|
|
2023-09-18 09:04:50 +08:00
|
|
|
AjaxResult uploadEvidence(MultipartFile file, Integer annexType, Long id,String userName,Long userId);
|
2023-09-14 18:42:55 +08:00
|
|
|
|
|
|
|
|
List<CaseEvidenceVO> getCaseListAll(String identityNum);
|
|
|
|
|
|
2023-09-18 09:04:50 +08:00
|
|
|
AjaxResult evidenceConfirmation(CaseApplication caseApplication);
|
|
|
|
|
|
2023-09-19 18:57:56 +08:00
|
|
|
AjaxResult caseCrossexamination(CaseApplication caseApplication, Integer objectionAddEviden, Integer openCourtHear, Integer pendingAppointArbotrar);
|
2023-09-13 19:08:38 +08:00
|
|
|
}
|