Administrator
2023-12-22 ad703f44063beafca0c1ec0913cb7d487179ef8f
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
<?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">
<!--namespace对应mapper接口所在的位置-->
<mapper namespace="com.dy.pipIrrGlobal.daoDemo.DemoAddressMapper">
 
    <resultMap id="addressMap" type="com.dy.pipIrrGlobal.pojoDemo.DemoAddress">
        <id property="id" column="id" />
        <result property="name" column="name"/>
        <result property="userId" column="userId"/>
    </resultMap>
 
    <select id="selectByUserId" resultType="com.dy.pipIrrGlobal.pojoDemo.DemoAddress">
        select * from demo_address where userId=#{userId}
    </select>
 
 
</mapper>