Administrator
20 hours ago 3bcc6918c362a7837f792ef91018a1fe043096ef
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}