1234567891011121314151617181920212223242526 |
- <?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.zhentao.userRelationships.mapper.UserRelationshipsMapper">
- <resultMap id="BaseResultMap" type="com.zhentao.userRelationships.domain.UserRelationships">
- <id property="id" column="id" jdbcType="BIGINT"/>
- <result property="userId" column="user_id" jdbcType="BIGINT"/>
- <result property="friendId" column="friend_id" jdbcType="BIGINT"/>
- <result property="remark" column="remark" jdbcType="VARCHAR"/>
- <result property="status" column="status" jdbcType="TINYINT"/>
- <result property="createdAt" column="created_at" jdbcType="TIMESTAMP"/>
- <result property="updatedAt" column="updated_at" jdbcType="TIMESTAMP"/>
- <result property="isBlacklist" column="is_blacklist" jdbcType="INTEGER"/>
- <result property="isDel" column="is_del" jdbcType="INTEGER"/>
- <result property="isMoments" column="is_moments" jdbcType="INTEGER"/>
- </resultMap>
- <sql id="Base_Column_List">
- id,user_id,friend_id,
- remark,status,created_at,
- updated_at,is_blacklist,is_del,
- is_moments
- </sql>
- </mapper>
|