| | |
| | | } |
| | | } |
| | | |
| | | /** |
| | | * PC端-删除经办人 |
| | | * @param caseId 对象 |
| | | */ |
| | | public void deletePrincipal(String caseId){ |
| | | try{ |
| | | mapper.deletePrincipal(caseId); |
| | | }catch (Exception e){ |
| | | log.error("[CaseInfoUnfoldService.choosePrincipal]调用失败,异常信息:"+e, e); |
| | | throw new ServiceException("CaseInfoUnfoldService.choosePrincipal", e); |
| | | } |
| | | } |
| | | |
| | | public TransactResultDTO getTransactResult(String caseId){ |
| | | try { |
| | | //查询办理结果信息 |
| | |
| | | } |
| | | Map<String, Object> terms = new HashMap<>(); |
| | | terms.put("mainId", caseId); |
| | | terms.put("ownerIds", "'" + caseId + "'"); |
| | | terms.put("types", "'" + FileOwnerTypeBaseEnum.OWNER_TYPE_302.getIndex() + "'"); |
| | | List<FileIdInfoBaseDTO> fileIdInfoBaseDTOList = sysClient.listIdInfoByOwnerIdList(terms); |
| | | if (ObjectUtils.isNotEmpty(fileIdInfoBaseDTOList)) { |