select id, parentid, customer_no, customer_name, customer_contact, customer_information, customer_type, deltag, create_by, create_time, update_by, update_time, remark from basic_customer
insert into basic_customer
parentid,
customer_no,
customer_name,
customer_contact,
customer_information,
customer_type,
deltag,
create_by,
create_time,
update_by,
update_time,
remark,
#{parentid},
#{customerNo},
#{customerName},
#{customerContact},
#{customerInformation},
#{customerType},
#{deltag},
#{createBy},
#{createTime},
#{updateBy},
#{updateTime},
#{remark},
update basic_customer
parentid = #{parentid},
customer_no = #{customerNo},
customer_name = #{customerName},
customer_contact = #{customerContact},
customer_information = #{customerInformation},
customer_type = #{customerType},
deltag = #{deltag},
create_by = #{createBy},
create_time = #{createTime},
update_by = #{updateBy},
update_time = #{updateTime},
remark = #{remark},
where id = #{id}
delete from basic_customer where id = #{id}
delete from basic_customer where id in
#{id}