确认证据,短信功能

This commit is contained in:
hejinbo
2023-09-18 09:04:50 +08:00
parent 113d5b99bb
commit 1e362973a5
7 changed files with 99 additions and 72 deletions
@@ -7,6 +7,7 @@ import com.ruoyi.wisdomarbitrate.domain.CaseApplication;
import com.ruoyi.wisdomarbitrate.domain.vo.CaseEvidenceVO;
import com.ruoyi.wisdomarbitrate.service.ICaseEvidenceService;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.validation.annotation.Validated;
import org.springframework.web.bind.annotation.*;
import org.springframework.web.multipart.MultipartFile;
@@ -26,31 +27,16 @@ public class CaseEvidenceController extends BaseController {
this.caseEvidenceService = caseEvidenceService;
}
/* *//**
* 查询被申请人案件列表
*
* @param identityNum 身份证号
* @return
*//*
@GetMapping("/respondent")
public TableDataInfo getCaseListByRespondent(@RequestParam String identityNum) {
startPage();
List<CaseEvidenceVO> list = caseEvidenceService.getCaseListByRespondent(identityNum);
if (list != null) {
return getDataTable(list);
}
return getDataTable(new ArrayList<>());
}*/
/**
* 被申请人根据案件id查询案件详情
* 根据案件id查询案件详情
*
* @param id
* @return
*/
@GetMapping("/{id}")
public AjaxResult getCaseDetailsById(@PathVariable Long id) {
return caseEvidenceService.getCaseDetailsById(id);
String username = this.getUsername();
return caseEvidenceService.getCaseDetailsById(id,username);
}
/**
@@ -63,19 +49,11 @@ public class CaseEvidenceController extends BaseController {
*/
@PostMapping("/upload")
public AjaxResult uploadEvidence(@RequestParam("file") MultipartFile file, Integer annexType, Long id) {
return caseEvidenceService.uploadEvidence(file, annexType, id);
String username = this.getUsername();
Long userId = this.getUserId();
return caseEvidenceService.uploadEvidence(file, annexType, id,username,userId);
}
/* @GetMapping("/applicant")
public TableDataInfo getCaseListByApplicant(@RequestParam String identityNum) {
startPage();
List<CaseEvidenceVO> list = caseEvidenceService.getCaseListByApplicant(identityNum);
if (list != null) {
return getDataTable(list);
}
return getDataTable(new ArrayList<>());
}*/
/**
* 查询当前用户案件列表
* @param identityNum
@@ -91,5 +69,13 @@ public class CaseEvidenceController extends BaseController {
return getDataTable(new ArrayList<>());
}
/**
* 证据确认
* @param caseApplication 案件对象
* @return 统一返回结果
*/
@PutMapping("/confirm")
public AjaxResult evidenceConfirmation(@Validated @RequestBody CaseApplication caseApplication){
return caseEvidenceService.evidenceConfirmation(caseApplication);
}
}