id,
network_id,
lat,
lng
delete
from pr_network_coordinates
where id = #{id,jdbcType=BIGINT}
insert into pr_network_coordinates (id, network_id, lat,
lng)
values (#{id,jdbcType=BIGINT}, #{networkId,jdbcType=BIGINT}, #{lat,jdbcType=DECIMAL},
#{lng,jdbcType=DECIMAL})
insert into pr_network_coordinates
id,
network_id,
lat,
lng,
#{id,jdbcType=BIGINT},
#{networkId,jdbcType=BIGINT},
#{lat,jdbcType=DECIMAL},
#{lng,jdbcType=DECIMAL},
update pr_network_coordinates
network_id = #{networkId,jdbcType=BIGINT},
lat = #{lat,jdbcType=DECIMAL},
lng = #{lng,jdbcType=DECIMAL},
where id = #{id,jdbcType=BIGINT}
update pr_network_coordinates
set network_id = #{networkId,jdbcType=BIGINT},
lat = #{lat,jdbcType=DECIMAL},
lng = #{lng,jdbcType=DECIMAL}
where id = #{id,jdbcType=BIGINT}
TRUNCATE pr_network_coordinates