id, number, status
delete from tb_seat
where id = #{id,jdbcType=INTEGER}
insert into tb_seat (id, number, status
)
values (#{id,jdbcType=INTEGER}, #{number,jdbcType=VARCHAR}, #{status,jdbcType=INTEGER}
)
insert into tb_seat
id,
number,
status,
#{id,jdbcType=INTEGER},
#{number,jdbcType=VARCHAR},
#{status,jdbcType=INTEGER},
update tb_seat
number = #{number,jdbcType=VARCHAR},
status = #{status,jdbcType=INTEGER},
where id = #{id,jdbcType=INTEGER}
update tb_seat
set number = #{number,jdbcType=VARCHAR},
status = #{status,jdbcType=INTEGER}
where id = #{id,jdbcType=INTEGER}