ImgsDao.xml 560 B

123456789101112131415
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" "http://mybatis.org/dtd/mybatis-3-mapper.dtd">
  3. <mapper namespace="com.zglc.kg.dao.ImgsDao">
  4. <!-- 可根据自己的需求,是否要使用 -->
  5. <resultMap type="com.zglc.kg.entity.ImgsEntity" id="imgsMap">
  6. <result property="id" column="id"/>
  7. <result property="parentId" column="parent_id"/>
  8. <result property="filePath" column="file_path"/>
  9. <result property="createDate" column="create_date"/>
  10. </resultMap>
  11. </mapper>