INSERT INTO customer_data_change_log (
corp_id,
history_id, customer_id, version, field_name, field_label,
old_value, new_value, change_time
) VALUES
(#{item.corpId},
#{item.historyId}, #{item.customerId}, #{item.version},
#{item.fieldName}, #{item.fieldLabel}, #{item.oldValue},
#{item.newValue}, #{item.changeTime}
)