|
@ -886,6 +886,15 @@ public class ResiTopicServiceImpl extends BaseServiceImpl<ResiTopicDao, ResiTopi |
|
|
resultDTO.setReleaseAddress(topicDetail.getAddress()); |
|
|
resultDTO.setReleaseAddress(topicDetail.getAddress()); |
|
|
resultDTO.setTopicStatus(topicDetail.getStatus()); |
|
|
resultDTO.setTopicStatus(topicDetail.getStatus()); |
|
|
resultDTO.setShiftIssueFlag(topicDetail.getShiftIssue()); |
|
|
resultDTO.setShiftIssueFlag(topicDetail.getShiftIssue()); |
|
|
|
|
|
ResiGroupEntity resiGroupEntity=resiGroupDao.selectById(topicDetail.getGroupId()); |
|
|
|
|
|
if(null!=resiGroupEntity){ |
|
|
|
|
|
CustomerGridFormDTO customerGridFormDTO=new CustomerGridFormDTO(); |
|
|
|
|
|
customerGridFormDTO.setGridId(resiGroupEntity.getGridId()); |
|
|
|
|
|
Result<CustomerGridDTO> gridInfoRes=govOrgOpenFeignClient.getGridBaseInfoByGridId(customerGridFormDTO); |
|
|
|
|
|
if(gridInfoRes.success()&&null!=gridInfoRes.getData()){ |
|
|
|
|
|
resultDTO.setGridName(gridInfoRes.getData().getGridNamePath()); |
|
|
|
|
|
} |
|
|
|
|
|
} |
|
|
//2.查询话题附件
|
|
|
//2.查询话题附件
|
|
|
QueryWrapper<ResiTopicAttachmentEntity> wrapper = new QueryWrapper<>(); |
|
|
QueryWrapper<ResiTopicAttachmentEntity> wrapper = new QueryWrapper<>(); |
|
|
wrapper.eq(FieldConstant.DEL_FLAG,NumConstant.ZERO_STR); |
|
|
wrapper.eq(FieldConstant.DEL_FLAG,NumConstant.ZERO_STR); |
|
|