select id, customer_code, customer_name, customer_postcode, province, city, address, contact_person,
contact_phone, contact_email, industry_type, remark, create_at, update_at, delete_at, status from customer_info
insert into customer_info
id,
customer_code,
customer_name,
customer_postcode,
province,
city,
address,
contact_person,
contact_phone,
contact_email,
industry_type,
remark,
create_at,
update_at,
delete_at,
status,
create_by,
#{id},
#{customerCode},
#{customerName},
#{customerPostcode},
#{province},
#{city},
#{address},
#{contactPerson},
#{contactPhone},
#{contactEmail},
#{industryType},
#{remark},
#{createAt},
#{updateAt},
#{deleteAt},
#{status},
#{createBy},
update customer_info
customer_code = #{customerCode},
customer_name = #{customerName},
customer_postcode = #{customerPostcode},
province = #{province},
city = #{city},
address = #{address},
contact_person = #{contactPerson},
contact_phone = #{contactPhone},
contact_email = #{contactEmail},
industry_type = #{industryType},
remark = #{remark},
create_at = #{createAt},
update_at = #{updateAt},
delete_at = #{deleteAt},
status = #{status},
update_by = #{updateBy},
where id = #{id}
delete from customer_info where id = #{id}
delete from customer_info where id in
#{id}