select id, order_number, asset_total_original_value, asset_total_net_value, application_date, application_department, reason, prepared_by, prepared_department, corporation, record_status from tb_asset_order
insert into tb_asset_order
order_number,
asset_total_original_value,
asset_total_net_value,
application_date,
application_department,
reason,
prepared_by,
prepared_department,
corporation,
record_status,
#{orderNumber},
#{assetTotalOriginalValue},
#{assetTotalNetValue},
#{applicationDate},
#{applicationDepartment},
#{reason},
#{preparedBy},
#{preparedDepartment},
#{corporation},
#{recordStatus},
update tb_asset_order
order_number = #{orderNumber},
asset_total_original_value = #{assetTotalOriginalValue},
asset_total_net_value = #{assetTotalNetValue},
application_date = #{applicationDate},
application_department = #{applicationDepartment},
reason = #{reason},
prepared_by = #{preparedBy},
prepared_department = #{preparedDepartment},
corporation = #{corporation},
record_status = #{recordStatus},
where id = #{id}
delete from tb_asset_order where id = #{id}
delete from tb_asset_order where id in
#{id}