tangzy
2022-07-21 a98b1db4392c357304036e8b3cdd01646920300d
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
<?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.springblade.modules.riverway.mapper.RiverwayMapper">
 
    <!-- 通用查询映射结果 -->
    <resultMap id="riverwayResultMap" type="org.springblade.modules.riverway.entity.RiverwayR">
        <result column="id" property="id"/>
        <result column="riverway" property="riverway"/>
        <result column="river_name" property="riverName"/>
        <result column="river_origin" property="riverOrigin"/>
        <result column="destination" property="destination"/>
        <result column="river_length" property="riverLength"/>
    </resultMap>
 
    <select id="selectName" resultType="java.util.HashMap">
        select riverway,river_code from riverway
    </select>
 
</mapper>