缴费凭证修改

This commit is contained in:
18792927508
2023-10-15 20:01:40 +08:00
parent 8eddc035c5
commit 4a6e28b629
@@ -101,7 +101,7 @@ public class CaseEvidenceServiceImpl implements ICaseEvidenceService {
.userName(userName) .userName(userName)
.build(); .build();
int count = caseAttachMapper.save(caseAttach); int count = caseAttachMapper.save(caseAttach);
if (count > 0) { if (count > 0 && annexType!=null && annexType!=8) {
if(id!=null){ if(id!=null){
//修改案件状态 //修改案件状态
CaseApplication caseApplication = new CaseApplication(); CaseApplication caseApplication = new CaseApplication();
@@ -121,6 +121,8 @@ public class CaseEvidenceServiceImpl implements ICaseEvidenceService {
return AjaxResult.error("上传失败"); return AjaxResult.error("上传失败");
} }
@Autowired @Autowired
IdentityAuthenticationMapper identityAuthenticationMapper; IdentityAuthenticationMapper identityAuthenticationMapper;