From d4c3427bbd111f4a005c77a9cc1f131b455fc6cf Mon Sep 17 00:00:00 2001
From: puzhibing <393733352@qq.com>
Date: 星期一, 30 十月 2023 11:30:40 +0800
Subject: [PATCH] 新增加腾讯地图工具类

---
 ruoyi-modules/ruoyi-shop/src/main/java/com/ruoyi/shop/controller/console/ShopController.java |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/ruoyi-modules/ruoyi-shop/src/main/java/com/ruoyi/shop/controller/console/ShopController.java b/ruoyi-modules/ruoyi-shop/src/main/java/com/ruoyi/shop/controller/console/ShopController.java
index 293a40c..3d69111 100644
--- a/ruoyi-modules/ruoyi-shop/src/main/java/com/ruoyi/shop/controller/console/ShopController.java
+++ b/ruoyi-modules/ruoyi-shop/src/main/java/com/ruoyi/shop/controller/console/ShopController.java
@@ -131,7 +131,7 @@
     @PostMapping("/getShopHFTXSubMchId")
     public R<ShopAuthenticationHftxVo> getShopHFTXSubMchId(@RequestBody Long shopId){
         ShopAuthenticationHftx shopAuthenticationHftx = shopAuthenticationHftxService.getOne(new QueryWrapper<ShopAuthenticationHftx>()
-                .eq("isDelete", 0).eq("shop_id", shopId));
+                .eq("is_delete", 0).eq("shop_id", shopId));
         ShopAuthenticationHftxVo vo = new ShopAuthenticationHftxVo();
         BeanUtils.copyProperties(shopAuthenticationHftx, vo);
         return R.ok(vo, "");

--
Gitblit v1.7.1