From c384e04f81caf681647c602d5896cc10b289582e Mon Sep 17 00:00:00 2001
From: doum <doum>
Date: 星期五, 27 二月 2026 14:59:16 +0800
Subject: [PATCH] 经销商管理

---
 server/dmmall_service/src/main/java/com/doumee/dao/business/ShopMapper.java |   34 ----------------------------------
 1 files changed, 0 insertions(+), 34 deletions(-)

diff --git a/server/dmmall_service/src/main/java/com/doumee/dao/business/ShopMapper.java b/server/dmmall_service/src/main/java/com/doumee/dao/business/ShopMapper.java
index f899062..e2b9c03 100644
--- a/server/dmmall_service/src/main/java/com/doumee/dao/business/ShopMapper.java
+++ b/server/dmmall_service/src/main/java/com/doumee/dao/business/ShopMapper.java
@@ -13,38 +13,4 @@
  */
 public interface ShopMapper extends BaseMapper<Shop> {
 
-
-    /**
-     * 娣诲姞绉垎
-     * @param shopId
-     * @param integral
-     */
-    @Select(" update shop set INTEGRAL = ifNull( INTEGRAL,0) + #{integral} , TOTAL_INTEGRAL = ifNull(TOTAL_INTEGRAL,0) +  #{titleIntegral}   , EDIT_DATE = now()  where id = #{shopId}  ")
-    void addIntegral(@Param("shopId") Integer shopId , @Param("integral") BigDecimal integral , @Param("titleIntegral")BigDecimal titleIntegral);
-
-    /**
-     * 鍑忓皯绉垎
-     * @param shopId
-     * @param integral
-     */
-    @Select(" update shop set INTEGRAL = ifNull( INTEGRAL,0) - #{integral} , EDIT_DATE = now()   where id = #{shopId}  ")
-    void subtractIntegral(@Param("shopId") Integer shopId , @Param("integral")BigDecimal integral);
-
-
-    /**
-     * 娣诲姞浣欓
-     * @param shopId
-     * @param amount
-     */
-    @Select(" update shop set AMOUNT = ifNull(AMOUNT,0) + #{amount} , TOTAL_AMOUNT = ifNull(TOTAL_AMOUNT,0) + #{titleAmount}   , EDIT_DATE = now()  where id = #{shopId}  ")
-    void addAmount(@Param("shopId") Integer shopId , @Param("amount") BigDecimal amount , @Param("titleAmount")BigDecimal titleAmount);
-
-    /**
-     * 鍑忓皯浣欓
-     * @param shopId
-     * @param amount
-     */
-    @Select(" update shop set AMOUNT = ifNull( AMOUNT,0) - #{amount} , EDIT_DATE = now()   where id = #{shopId}  ")
-    void subtractAmount(@Param("shopId") Integer shopId , @Param("amount")BigDecimal amount);
-
 }

--
Gitblit v1.9.3