| | |
| | | QueryWrapper<Investigation> wrapperI = new QueryWrapper<>(); |
| | | wrapperI.lambda().eq(Investigation::getBaseCaseId, baseCase.getId()); |
| | | Investigation investigation = investigationMapper.selectOne(wrapperI); |
| | | //获取当事人信息 |
| | | Map mapP = new HashMap(); |
| | | mapP.put("id", investigation.getPartyId()); |
| | | PartyInfo partyInfo = partyInfoMapper.selectCondMap(mapP); |
| | | //填充当事人 |
| | | investigation.setPartyInfo(partyInfo); |
| | | 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<>(); |