From f2fc22bc1a201ca398edc7b6bc5342ef49cda287 Mon Sep 17 00:00:00 2001
From: yanghui <2536613402@qq.com>
Date: 星期六, 26 十一月 2022 16:00:51 +0800
Subject: [PATCH] #feat 自提点详情接口

---
 springcloud_k8s_panzhihuazhihuishequ/service_community/src/main/java/com/panzhihua/service_community/service/impl/ConvenientElevatingPointServiceImpl.java |    4 +++-
 1 files changed, 3 insertions(+), 1 deletions(-)

diff --git a/springcloud_k8s_panzhihuazhihuishequ/service_community/src/main/java/com/panzhihua/service_community/service/impl/ConvenientElevatingPointServiceImpl.java b/springcloud_k8s_panzhihuazhihuishequ/service_community/src/main/java/com/panzhihua/service_community/service/impl/ConvenientElevatingPointServiceImpl.java
index f1662bc..406bcb1 100644
--- a/springcloud_k8s_panzhihuazhihuishequ/service_community/src/main/java/com/panzhihua/service_community/service/impl/ConvenientElevatingPointServiceImpl.java
+++ b/springcloud_k8s_panzhihuazhihuishequ/service_community/src/main/java/com/panzhihua/service_community/service/impl/ConvenientElevatingPointServiceImpl.java
@@ -123,7 +123,9 @@
     @Override
     public R detailPoint(Long pointId) {
         ConvenientElevatingPointDO convenientElevatingPointDO = this.baseMapper.selectById(pointId);
-        return R.ok(convenientElevatingPointDO);
+        ConvenientElevatingPointVO convenientElevatingPointVO = new ConvenientElevatingPointVO();
+        BeanUtils.copyProperties(convenientElevatingPointDO,convenientElevatingPointVO);
+        return R.ok(convenientElevatingPointVO);
     }
 
     public R findPointByMerchantId(Long merchantId, String lat, String lng) {

--
Gitblit v1.7.1