TbProfileImgMapper.xml 471 B

12345678910111213
  1. <?xml version="1.0" encoding="UTF-8" ?>
  2. <!DOCTYPE mapper
  3. PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
  4. "http://mybatis.org/dtd/mybatis-3-mapper.dtd">
  5. <mapper namespace="com.ruoyi.app.mapper.TbProfileImgMapper">
  6. <resultMap type="TbProfileImg" id="TbProfileImgResult">
  7. <result property="id" column="id" />
  8. <result property="profileId" column="profile_id" />
  9. <result property="url" column="url" />
  10. </resultMap>
  11. </mapper>