yangys
2024-04-04 2cf2921440e7473ae50796c2cb688f609b3a7995
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
<?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.qianwen.smartman.modules.visual.mapper.VisualMapMapper">
 
    <!-- 通用查询映射结果 -->
    <resultMap id="visualMapResultMap" type="com.qianwen.smartman.modules.visual.dto.VisualMapDTO">
        <id column="id" property="id"/>
        <result column="name" property="name"/>
    </resultMap>
 
 
    <select id="selectVisualMapPage" resultMap="visualMapResultMap">
        select id, name from blade_visual_map
    </select>
 
</mapper>