1234567891011121314151617 |
- <?xml version="1.0" encoding="UTF-8"?>
- <!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" "http://mybatis.org/dtd/mybatis-3-mapper.dtd">
- <mapper namespace="org.jeecg.modules.demo.hzz.axgh.axlh.mapper.RmAxlhMapper">
- <update id="updAxlh" parameterType="Object">
- update rm_axlh set geom=(ST_Transform(st_geometryfromtext(#{wkt}, 4548),4490)) where id=#{id};
- </update>
- <update id="updAxlh2" parameterType="Object">
- update rm_axlh set geom=(ST_Transform(st_geometryfromtext(#{wkt}, 4527),4490)) where id=#{id};
- </update>
- <update id="updAxlh3" parameterType="Object">
- update rm_axlh set geom=(st_geometryfromtext(#{wkt},4490)) where id=#{id};
- </update>
- <update id="updGeoinfo" parameterType="Object">
- update rm_axlh set geoinfo = st_asGeojson(geom) where id=#{id};
- </update>
- </mapper>
|