forked from gzzfw/backEnd/gz-dyh

wangwh
2024-09-13 99bb79a7ceac1107d2bf65df29e149810bf2bbb7
dyh-service/dyh-mediate/src/main/java/cn/huge/module/cases/service/CaseAssistApplyService.java
@@ -189,7 +189,7 @@
    }
    /**
     * 审核联合处置申请
     * 审核联合处置审核
     * @param caseAssistApply 实体对象
     */
    public void reviewCaseAssistApply(CaseAssistApply caseAssistApply, String userId){
@@ -260,6 +260,7 @@
     * @return long
     */
    public CaseAssistApply caseAssistApplyByCaseId(String caseId){
        try {
        QueryWrapper<CaseAssistApply> caseAssistApplyQueryWrapper = new QueryWrapper<>();
        caseAssistApplyQueryWrapper.eq("case_id", caseId).eq("apply_status", 0)
                .orderByDesc("create_time");
@@ -272,6 +273,10 @@
            caseAssistApply.setFileInfoBaseDTOList(fileIdInfoBaseDTOList.get(0).getFileList());
        }
        return caseAssistApply;
        }catch(Exception e ){
            log.error("[CaseAssistApplyService.caseAssistApplyByCaseId]调用失败,异常信息:"+e, e);
            throw new ServiceException("CaseAssistApplyService.caseAssistApplyByCaseId", e);
        }
    }
    /**