select id, user_id, account_type, account_phone, account_name, balance, version, del_flag, create_by, create_time, update_by, update_time from user_account
insert into user_account
user_id,
account_type,
account_phone,
account_name,
balance,
version,
del_flag,
create_by,
create_time,
update_by,
update_time,
#{userId},
#{accountType},
#{accountPhone},
#{accountName},
#{balance},
#{version},
#{delFlag},
#{createBy},
#{createTime},
#{updateBy},
#{updateTime},
update user_account
user_id = #{userId},
account_type = #{accountType},
account_phone = #{accountPhone},
account_name = #{accountName},
balance = #{balance},
version = #{version},
del_flag = #{delFlag},
create_by = #{createBy},
create_time = #{createTime},
update_by = #{updateBy},
update_time = #{updateTime},
where id = #{id}
delete from user_account where id = #{id}
delete from user_account where id in
#{id}