12345678910111213141516171819202122 |
- <?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.groups.mapper.GroupMembersMapper">
- <resultMap id="BaseResultMap" type="com.zhentao.groups.pojo.GroupMembers">
- <id property="id" column="id" jdbcType="BIGINT"/>
- <result property="groupId" column="group_id" jdbcType="BIGINT"/>
- <result property="userId" column="user_id" jdbcType="BIGINT"/>
- <result property="nickname" column="nickname" jdbcType="VARCHAR"/>
- <result property="role" column="role" jdbcType="TINYINT"/>
- <result property="joinTime" column="join_time" jdbcType="TIMESTAMP"/>
- <result property="lastAckMsgId" column="last_ack_msg_id" jdbcType="BIGINT"/>
- </resultMap>
- <sql id="Base_Column_List">
- id,group_id,user_id,
- nickname,role,join_time,
- last_ack_msg_id
- </sql>
- </mapper>
|