select id, name, customer_id, phone, city, status, create_by, create_time, update_by, update_time, remark from customer_place
insert into customer_place
name,customer_id,phone,city,create_by,create_time,update_by,update_time,remark,type,sub_type,#{name},#{customerId},#{phone},#{city},#{createBy},#{createTime},#{updateBy},#{updateTime},#{remark},#{type},#{subType},
update customer_place
name = #{name},customer_id = #{customerId},phone = #{phone},city = #{city},create_by = #{createBy},create_time = #{createTime},update_by = #{updateBy},update_time = #{updateTime},remark = #{remark},
where id = #{id}
delete from customer_place where id = #{id}
delete from customer_place where id in
#{id}
UPDATE customer_place set status = #{status}
WHERE id in ( #{ids} )