select id,
amount,
create_by,
create_time,
update_by,
update_time,
remark,
user_id,
search_value,
before_amount,
after_amount,
serial_id,
type,
symbol,
admin_parent_ids,
u_amount
from t_app_wallet_record
insert into t_app_wallet_record
amount,
create_by,
create_time,
update_by,
update_time,
remark,
user_id,
search_value,
before_amount,
after_amount,
serial_id,
type,
symbol,
admin_parent_ids,
u_amount,
#{amount},
#{createBy},
#{createTime},
#{updateBy},
#{updateTime},
#{remark},
#{userId},
#{searchValue},
#{beforeAmount},
#{afterAmount},
#{serialId},
#{type},
#{symbol},
#{adminParentIds},
#{uAmount},
update t_app_wallet_record
amount = #{amount},
create_by = #{createBy},
create_time = #{createTime},
update_by = #{updateBy},
update_time = #{updateTime},
remark = #{remark},
user_id = #{userId},
search_value = #{searchValue},
before_amount = #{beforeAmount},
after_amount = #{afterAmount},
serial_id = #{serialId},
type = #{type},
symbol = #{symbol},
admin_parent_ids = #{adminParentIds},
u_amount = #{uAmount},
where id = #{id}
delete
from t_app_wallet_record
where id = #{id}
delete from t_app_wallet_record where id in
#{id}