From e8b25a2652c748719502441a3360600266911a73 Mon Sep 17 00:00:00 2001 From: CeDo <cedoogle@gmail.com> Date: 星期四, 06 五月 2021 15:42:22 +0800 Subject: [PATCH] 居民留言:添加 回复人职位 --- springcloud_k8s_panzhihuazhihuishequ/service_community/src/main/java/com/panzhihua/service_community/service/impl/ComActMessageServiceImpl.java | 16 ++++++++++++++++ 1 files changed, 16 insertions(+), 0 deletions(-) diff --git a/springcloud_k8s_panzhihuazhihuishequ/service_community/src/main/java/com/panzhihua/service_community/service/impl/ComActMessageServiceImpl.java b/springcloud_k8s_panzhihuazhihuishequ/service_community/src/main/java/com/panzhihua/service_community/service/impl/ComActMessageServiceImpl.java index cf51e9d..2934883 100644 --- a/springcloud_k8s_panzhihuazhihuishequ/service_community/src/main/java/com/panzhihua/service_community/service/impl/ComActMessageServiceImpl.java +++ b/springcloud_k8s_panzhihuazhihuishequ/service_community/src/main/java/com/panzhihua/service_community/service/impl/ComActMessageServiceImpl.java @@ -154,6 +154,22 @@ records.forEach(comActMessageVO1 -> { Long id = comActMessageVO1.getId(); List<ComActMessageBackVO> list = comActMessageDAO.selectMsgBackList(id); + if(list!=null&& list.size()>0) { + list.forEach(vo -> { + Long type = comActMessageVO1.getType(); + if (type == 1) { + ComPbServiceTeamVO team = comActMessageDAO.selectComPbServiceTeamById(comActMessageVO1.getSendtoUserId()); + if (!ObjectUtils.isEmpty(team)) { + vo.setUserJob(team.getJob()); + } + } else if (type == 2) { + PartyCommitteeVO party = comActMessageDAO.selectPartyCommitteeById(comActMessageVO1.getSendtoUserId()); + if (!ObjectUtils.isEmpty(party)) { + vo.setUserJob(party.getPosition()); + } + } + }); + } comActMessageVO1.setBackList(list); }); iPage.setRecords(records); -- Gitblit v1.7.1