forked from iVMiku/guidance-backend
20 lines
815 B
XML
20 lines
815 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.ivmiku.tutorial.mapper.LikeMapper">
|
|
|
|
<resultMap id="BaseResultMap" type="com.ivmiku.tutorial.entity.Likee">
|
|
<id property="id" column="id" jdbcType="BIGINT"/>
|
|
<result property="userOpenid" column="user_openid" jdbcType="VARCHAR"/>
|
|
<result property="postId" column="post_id" jdbcType="BIGINT"/>
|
|
<result property="commentId" column="comment_id" jdbcType="BIGINT"/>
|
|
<result property="isDeleted" column="is_deleted" jdbcType="TINYINT"/>
|
|
</resultMap>
|
|
|
|
<sql id="Base_Column_List">
|
|
id,user_openid,post_id,
|
|
comment_id,is_deleted
|
|
</sql>
|
|
</mapper>
|