id, `type`, `name`, `value`, updatetime
delete from ln_config
where id = #{id,jdbcType=INTEGER}
insert into ln_config (`type`, `name`, `value`,
updatetime)
values (#{type,jdbcType=OTHER}, #{name,jdbcType=VARCHAR}, #{value,jdbcType=VARCHAR},
#{updatetime,jdbcType=BIGINT})
insert into ln_config
`type`,
`name`,
`value`,
updatetime,
#{type,jdbcType=OTHER},
#{name,jdbcType=VARCHAR},
#{value,jdbcType=VARCHAR},
#{updatetime,jdbcType=BIGINT},
update ln_config
`type` = #{type,jdbcType=OTHER},
`name` = #{name,jdbcType=VARCHAR},
`value` = #{value,jdbcType=VARCHAR},
updatetime = #{updatetime,jdbcType=BIGINT},
where id = #{id,jdbcType=INTEGER}
update ln_config
set `type` = #{type,jdbcType=OTHER},
`name` = #{name,jdbcType=VARCHAR},
`value` = #{value,jdbcType=VARCHAR},
updatetime = #{updatetime,jdbcType=BIGINT}
where id = #{id,jdbcType=INTEGER}
update ln_config
`type` = #{type,jdbcType=OTHER},
`value` = #{value,jdbcType=VARCHAR},
updatetime = #{updatetime,jdbcType=BIGINT},
where name = #{name,jdbcType=VARCHAR}