INSERT INTO ic_investment_floor (
id, investment_id, floor_id, floor_height,
area, capacity, refer_price, rental_month,
checkin_time, rental_method, status,
remark, created_time, created_by,
updated_by, updated_time, del_flag,
created_name, updated_name
)
VALUES
(
#{item.id}, #{item.investment_id}, #{item.floor_id},#{item.floor_height},
#{item.area}, #{item.capacity}, #{item.refer_price}, #{item.rental_month},
#{item.checkin_time},#{item.rental_method}, #{item.status},
#{item.remark}, #{item.created_time}, #{item.created_by}
#{item.updated_by}, #{item.updated_time}, #{item.del_flag},
#{item.created_name}, #{item.updated_name}
)
DELETE FROM ic_investment_floor WHERE investment_id = #{id}