id, point_properties_id, type, point_geo, del_flg
insert into T_Map_Observe_Point_Geo(point_properties_id,
type,
point_geo,
del_flg)
values (#{pointPropertiesId},
#{type},
ST_GeomFromText(#{pointGeo}),
0)
update T_Map_Observe_Point_Geo
type = #{type},
point_geo = ST_GeomFromText(#{pointGeo}),
where
point_properties_id = #{pointPropertiesId}