月球大数据地理空间分析展示平台-【后端】-月球后台服务
13693261870
2023-06-02 dc0d4a7907f3affdbc116288cac24ad4ba05f319
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
<?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="com.lf.server.mapper.data.UploadMapper">
    <select id="selectCoords" resultType="com.lf.server.entity.data.CoordEntity">
        select * from lf.sys_coord
        <where>
            1 = 1
            <if test="zoning != null">
                and zoning = #{zoning}
            </if>
        </where>
        order by id
    </select>
 
    <select id="selectCount4Coord" resultType="java.lang.Integer">
        select count(*) from lf.sys_coord where epsgcode = #{epsgCode}
    </select>
 
    <select id="selectProject" resultType="com.lf.server.entity.data.DirEntity">
        select * from lf.sys_dir where pid = 0 and id > 1
    </select>
 
    <select id="selectFmeLog" resultType="com.lf.server.entity.data.FmeLogEntity">
        select * from lf.sys_fme_log where parentid = #{parentid};
    </select>
</mapper>