21 lines
810 B
XML
21 lines
810 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.peanut.modules.book.dao.UserFollowUpDao">
|
|
|
|
<!-- 可根据自己的需求,是否要使用 -->
|
|
<resultMap type="com.peanut.modules.book.entity.UserFollowUpEntity" id="UserFollowUpMap">
|
|
<result property="id" column="oid"/>
|
|
<result property="userId" column="userId"/>
|
|
<result property="oid" column="oid"/>
|
|
<result property="conTent" column="conTent"/>
|
|
<result property="images" column="images"/>
|
|
<result property="delflag" column="delflag"/>
|
|
<result property="bookid" column="bookid"/>
|
|
<result property="createDate" column="create_date"/>
|
|
|
|
|
|
</resultMap>
|
|
|
|
|
|
</mapper> |