update xzx_account_info
set overdraft_limit = cast((cast(overdraft_limit as DECIMAL(9,2))+#{money}) as CHAR),update_time=now()
where user_id=#{userId} and del_flag=0 and is_prohibit='0'
update xzx_account_info
set money = cast((cast(money as DECIMAL(9,2))+#{money}) as CHAR),
overdraft_limit = cast(#{limit} as CHAR),update_time=now()
where user_id=#{userId} and del_flag=0 and is_prohibit='0'
update xzx_account_info set
overdraft_limit=#{newOverdrawPrice}.
fixed_limit=#{newOverdrawPrice}
where del_flag=0 and overdraft_limit=#{oldOverdrawPrice}
and user_id in
#{id}
update xzx_account_info
set fixed_limit = fixed_limit + #{money}, overdraft_limit = overdraft_limit + #{money}
where del_flag = 0 and account_id = #{accountId}
update `xzx_account_info` set money=#{money}
where account_id=#{accountId}
update xzx_account_info
set overdraft_limit = fixed_limit
where del_flag = 0 and account_id = #{accountId}
update xzx_account_info
set money = #{money}, overdraft_limit = #{overdraftLimit}
where user_id = #{userId} and del_flag = 0