<?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>
|