`id`, `customer_state`
delete from customer_info_state
where `id` = #{id,jdbcType=INTEGER}
insert into customer_info_state (`id`, `customer_state`)
values (#{id,jdbcType=INTEGER}, #{customer_state,jdbcType=VARCHAR})
insert into customer_info_state
`id`,
`customer_state`,
#{id,jdbcType=INTEGER},
#{customer_state,jdbcType=VARCHAR},
update customer_info_state
`customer_state` = #{customer_state,jdbcType=VARCHAR},
where `id` = #{id,jdbcType=INTEGER}
update customer_info_state
set `customer_state` = #{customer_state,jdbcType=VARCHAR}
where `id` = #{id,jdbcType=INTEGER}