This commit is contained in:
18792927508
2023-10-20 17:13:12 +08:00
parent 65c641403c
commit 39bce7bd62
6 changed files with 39 additions and 21 deletions
@@ -11,5 +11,13 @@ import java.util.List;
*/
@Data
public class BatchCaseApplication {
private List<CaseApplication> list;
private List<Long> ids;
/**
* 是否同意,0拒绝,1同意
*/
private Integer agreeOrNotCheck;
/**
* 1同意,0拒绝
*/
private Integer opinion;
}
@@ -44,7 +44,7 @@ public class CaseArbitrateServiceImpl implements ICaseArbitrateService {
//查询案件详细信息
CaseApplication caseApplication1 = caseApplicationMapper.selectCaseApplication(caseApplication);
if (caseApplication1 == null) {
return AjaxResult.error();
return AjaxResult.success();
}
int arbitratMethod = caseApplication1.getArbitratMethod();
String caseNum = caseApplication1.getCaseNum();