update xzx_account_info
set money = cast((cast(money 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 collect_score = cast((cast(collect_score 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 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 money=#{money}
where account_id=#{accountId}
INSERT INTO xzx_account_info(`account_id`,`account_name`, `user_id`, `pay_password`, `money`, `freeze_money`,
`withdraw_money`, `overdraft_limit`, `lock_time`,`fixed_limit`)
VALUES (#{id}, #{phone}, #{userId}, NULL, '0', '0', '0', #{money}, NULL,#{money})
update xzx_account_info set
money=#{money}
, overdraft_limit=#{overdraftLimit}
where account_id=#{accountId}