Administrator
2025-12-12 abc803a37c3eb804a8c85164c41554eb9d1d44b8
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}