吉安感知网项目-后端
xiebin
2026-01-28 74756c657109a4e48dd6c0b4d8959cdab89b33a9
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
<?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.sxkj.fw.area.mapper.FwAreaDivideExtMapper">
 
    <!-- 通用查询映射结果 -->
    <resultMap id="fwAreaDivideExtResultMap" type="org.sxkj.fw.area.vo.FwAreaDivideExtVO">
        <result column="id" property="id"/>
        <result column="area_divide_id" property="areaDivideId"/>
        <result column="area_type_key" property="areaTypeKey"/>
        <result column="area_type_value" property="areaTypeValue"/>
        <result column="geom" property="geom"/>
        <result column="area_code" property="areaCode"/>
    </resultMap>
 
 
    <select id="selectFwAreaDivideExtPage" resultMap="fwAreaDivideExtResultMap">
        select * from ja_fw_area_divide_ext where is_deleted = 0
    </select>
 
 
    <select id="exportFwAreaDivideExt" resultType="org.sxkj.fw.area.excel.FwAreaDivideExtExcel">
        SELECT * FROM ja_fw_area_divide_ext ${ew.customSqlSegment}
    </select>
 
</mapper>