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-20 16:10:03 +08:00
|
|
|
import com.ruoyi.wisdomarbitrate.domain.dto.CaseEvidenceDTO;
|
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-20 16:10:03 +08:00
|
|
|
AjaxResult caseCrossexamination(CaseEvidenceDTO caseEvidenceDTO);
|
2023-10-19 10:47:35 +08:00
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* 批量上传文件
|
|
|
|
|
* @param file
|
|
|
|
|
* @param annexType
|
|
|
|
|
* @param id
|
|
|
|
|
* @param username
|
|
|
|
|
* @param userId
|
|
|
|
|
* @return
|
|
|
|
|
*/
|
|
|
|
|
AjaxResult batchUpload(MultipartFile[] file, Integer annexType, Long id, String username, Long userId);
|
|
|
|
|
|
|
|
|
|
AjaxResult fileList(Long caseAppliId, List<Integer> annexTypeList);
|
2023-10-19 14:05:15 +08:00
|
|
|
|
|
|
|
|
int deleteFile( List<Integer> fileIds);
|
2023-09-13 19:08:38 +08:00
|
|
|
}
|