Files
guidance-backend/community-8073/src/main/resources/mapper/FavoriteMapper.xml
苏元皓 a018f5b85d minio
2024-08-09 09:27:23 +08:00

19 lines
730 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.FavoriteMapper">
<resultMap id="BaseResultMap" type="com.ivmiku.tutorial.entity.Favorite">
<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="isDeleted" column="is_deleted" jdbcType="TINYINT"/>
</resultMap>
<sql id="Base_Column_List">
id,user_openid,post_id,
is_deleted
</sql>
</mapper>