select id,
enterprise_name,
address,
postcode,
enterprise_contact,
contact_number,
create_by,
create_time,
update_by,
update_time,
deleted
from t_automobile_enterprise
insert into t_automobile_enterprise
id,
enterprise_name,
address,
postcode,
enterprise_contact,
contact_number,
create_by,
create_time,
update_by,
update_time,
#{id},
#{enterpriseName},
#{address},
#{postcode},
#{enterpriseContact},
#{contactNumber},
#{createBy},
#{createTime},
#{updateBy},
#{updateTime},
update t_automobile_enterprise
enterprise_name = #{enterpriseName},
address = #{address},
postcode = #{postcode},
enterprise_contact = #{enterpriseContact},
contact_number = #{contactNumber},
create_by = #{createBy},
create_time = #{createTime},
update_by = #{updateBy},
update_time = #{updateTime},
where id = #{id}