Administrator
2025-12-26 4c70b99382c01d707b41060c3c3b81d538f1c1db
src/main/resources/mapper/member/MemberWalletContractDao.xml
@@ -14,13 +14,13 @@
      update member_wallet_contract
      <set>
         <if test="availableBalance!=null">
            available_balance = #{availableBalance},
            available_balance = available_balance + #{availableBalance},
         </if>
         <if test="totalBalance!=null">
            total_balance = #{totalBalance},
            total_balance =total_balance + #{totalBalance},
         </if>
         <if test="frozenBalance!=null">
            frozen_balance = #{frozenBalance},
            frozen_balance = frozen_balance + #{frozenBalance},
         </if>
      </set>
      where id =#{id}