mirror of
https://gitee.com/dromara/RuoYi-Vue-Plus.git
synced 2026-09-20 10:13:28 +08:00
15 lines
551 B
XML
15 lines
551 B
XML
<?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.ruoyi.demo.mapper.PictureDisplayMapper">
|
|
|
|
<resultMap type="com.ruoyi.demo.domain.PictureDisplay" id="PictureDisplayResult">
|
|
<result property="picId" column="pic_id"/>
|
|
<result property="picUrl" column="pic_url"/>
|
|
<result property="picSelection" column="pic_selection"/>
|
|
<result property="picBool" column="pic_bool"/>
|
|
</resultMap>
|
|
|
|
|
|
</mapper> |