id,code,name,
remark,dt,deleted
delete from plt_station
where id = #{id,jdbcType=BIGINT}
insert into plt_station
( id,code,name
,remark,deleted
)
values (#{id,jdbcType=BIGINT},#{code,jdbcType=VARCHAR},#{name,jdbcType=VARCHAR}
,#{remark,jdbcType=VARCHAR},#{deleted,jdbcType=TINYINT}
)
insert into plt_station
id,code,name,remark,deleted,#{id,jdbcType=BIGINT},#{code,jdbcType=VARCHAR},#{name,jdbcType=VARCHAR},#{remark,jdbcType=VARCHAR},#{deleted,jdbcType=TINYINT},
update plt_station
code = #{code,jdbcType=VARCHAR},
name = #{name,jdbcType=VARCHAR},
remark = #{remark,jdbcType=VARCHAR},
deleted = #{deleted,jdbcType=TINYINT},
where id = #{id,jdbcType=BIGINT}
update plt_station
set
code = #{code,jdbcType=VARCHAR},
name = #{name,jdbcType=VARCHAR},
remark = #{remark,jdbcType=VARCHAR},
deleted = #{deleted,jdbcType=TINYINT}
where id = #{id,jdbcType=BIGINT}
update plt_station set deleted = 1
where id = #{id}