2023-09-13 19:08:38 +08:00
|
|
|
package com.ruoyi.wisdomarbitrate.service;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
import com.ruoyi.common.core.domain.AjaxResult;
|
|
|
|
|
import com.ruoyi.wisdomarbitrate.domain.vo.CaseEvidenceVO;
|
|
|
|
|
import org.springframework.web.multipart.MultipartFile;
|
|
|
|
|
|
|
|
|
|
import java.util.List;
|
|
|
|
|
|
|
|
|
|
public interface ICaseEvidenceService {
|
2023-09-14 18:42:55 +08:00
|
|
|
// List<CaseEvidenceVO> getCaseListByRespondent(String identityNum);
|
2023-09-13 19:08:38 +08:00
|
|
|
|
|
|
|
|
AjaxResult getCaseDetailsById(Long id);
|
|
|
|
|
|
|
|
|
|
AjaxResult uploadEvidence(MultipartFile file, Integer annexType, Long id);
|
2023-09-14 18:42:55 +08:00
|
|
|
|
|
|
|
|
//List<CaseEvidenceVO> getCaseListByApplicant(String identityNum);
|
|
|
|
|
|
|
|
|
|
List<CaseEvidenceVO> getCaseListAll(String identityNum);
|
|
|
|
|
|
2023-09-13 19:08:38 +08:00
|
|
|
}
|