From f0e91343445b1e568d1dfe705252d3e1201a18a7 Mon Sep 17 00:00:00 2001 From: 101captain <237651143@qq.com> Date: 星期四, 28 七月 2022 18:02:36 +0800 Subject: [PATCH] Merge branch 'huacheng' into huacheng_test --- springcloud_k8s_panzhihuazhihuishequ/service_community/src/main/java/com/panzhihua/service_community/service/impl/ComActServiceImpl.java | 10 +++++++++- 1 files changed, 9 insertions(+), 1 deletions(-) diff --git a/springcloud_k8s_panzhihuazhihuishequ/service_community/src/main/java/com/panzhihua/service_community/service/impl/ComActServiceImpl.java b/springcloud_k8s_panzhihuazhihuishequ/service_community/src/main/java/com/panzhihua/service_community/service/impl/ComActServiceImpl.java index 23c092e..92c2052 100644 --- a/springcloud_k8s_panzhihuazhihuishequ/service_community/src/main/java/com/panzhihua/service_community/service/impl/ComActServiceImpl.java +++ b/springcloud_k8s_panzhihuazhihuishequ/service_community/src/main/java/com/panzhihua/service_community/service/impl/ComActServiceImpl.java @@ -7,6 +7,8 @@ import javax.annotation.Resource; +import com.panzhihua.common.model.vos.community.ComActPasswordVo; +import com.panzhihua.service_community.util.MyAESUtil; import org.springframework.beans.BeanUtils; import org.springframework.security.crypto.bcrypt.BCryptPasswordEncoder; import org.springframework.stereotype.Service; @@ -281,7 +283,13 @@ @Override public R getCommunityPassword(Long communityId){ - return R.ok(comActDAO.getCommunityPassword(communityId)); + ComActPasswordVo comActPasswordVo=comActDAO.getCommunityPassword(communityId); + try { + comActPasswordVo.setPassword(MyAESUtil.Decrypt(comActPasswordVo.getPassword(),"Ryo7M3n8loC5Abcd")); + } catch (Exception e) { + e.printStackTrace(); + } + return R.ok(comActPasswordVo); } } -- Gitblit v1.7.1