From 4af298c859b07713a94317ad98306f5618fc62d0 Mon Sep 17 00:00:00 2001 From: Kurisu Date: Mon, 8 Feb 2021 10:57:21 +0800 Subject: [PATCH] :bug: 修复小程序档案dealer不正确的问题 --- fw-valhalla-service/src/main/java/cn/fw/valhalla/service/bus/cust/CustomerBizService.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/fw-valhalla-service/src/main/java/cn/fw/valhalla/service/bus/cust/CustomerBizService.java b/fw-valhalla-service/src/main/java/cn/fw/valhalla/service/bus/cust/CustomerBizService.java index 6c21e73..73c0fb5 100644 --- a/fw-valhalla-service/src/main/java/cn/fw/valhalla/service/bus/cust/CustomerBizService.java +++ b/fw-valhalla-service/src/main/java/cn/fw/valhalla/service/bus/cust/CustomerBizService.java @@ -585,8 +585,8 @@ public class CustomerBizService extends AbstractCustomerService { return null; } CarArchiveVO.DealerItem vo = CarArchiveVO.createDealerItem(); - vo.setId(shop.getId()); - vo.setName(shop.getShortName()); + vo.setId(shop.getDealerId()); + vo.setName(shop.getDealerName()); vo.setLogo(shop.getShopLogo()); vo.setPhone(shop.getTel()); vo.setAddr(shop.getAddr()); -- libgit2 0.22.2