From ed0c579e95ba6c2616e112f87c48b11ef4c0e9d7 Mon Sep 17 00:00:00 2001
From: puzhibing <393733352@qq.com>
Date: 星期一, 23 十月 2023 10:55:12 +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