| | |
| | | WorkflowConfigMapper workflowConfigMapper; |
| | | @Resource |
| | | ImageResourcesMapper imageResourcesMapper; |
| | | @Resource |
| | | DispatchInfoMapper dispatchInfoMapper; |
| | | @Resource |
| | | PartyInfoMapper partyInfoMapper; |
| | | |
| | | |
| | | @Override |
| | |
| | | IllegalBuilding illegalBuilding = illegalBuildingMapper.selectById(baseCase.getId()); |
| | | baseCase.setIllegalBuilding(illegalBuilding); |
| | | } |
| | | //获取调度信息 |
| | | Map mapD = new HashMap(); |
| | | mapD.put("baseCaseId",baseCase.getId()); |
| | | DispatchInfo dispatchInfo = dispatchInfoMapper.selectCondMap(mapD); |
| | | baseCase.setDispatchInfo(dispatchInfo); |
| | | bcd.setBaseCase(baseCase); |
| | | //案件相关信息 |
| | | //2.查询办理经过信息 |
| | |
| | | QueryWrapper<Investigation> wrapperI = new QueryWrapper<>(); |
| | | wrapperI.lambda().eq(Investigation::getBaseCaseId, baseCase.getId()); |
| | | Investigation investigation = investigationMapper.selectOne(wrapperI); |
| | | if (investigation != null && investigation.getPartyId() != null) { |
| | | //获取当事人信息 |
| | | Map mapP = new HashMap(); |
| | | mapP.put("id", investigation.getPartyId()); |
| | | PartyInfo partyInfo = partyInfoMapper.selectCondMap(mapP); |
| | | //填充当事人 |
| | | investigation.setPartyInfo(partyInfo); |
| | | } |
| | | currentSitVo.setInvestigation(investigation); |
| | | //设置告知违法 |
| | | QueryWrapper<Writ> wrapperW = new QueryWrapper<>(); |