1234567891011121314151617181920212223242526272829303132333435 |
- <?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.futu.goose.user.dao.WechatUsersMapper">
- <resultMap id="BaseResultMap" type="com.futu.goose.user.domain.WechatUsers">
- <id property="id" column="id" jdbcType="BIGINT"/>
- <result property="userId" column="user_id" jdbcType="BIGINT"/>
- <result property="openid" column="openid" jdbcType="VARCHAR"/>
- <result property="unionid" column="unionid" jdbcType="VARCHAR"/>
- <result property="nickname" column="nickname" jdbcType="VARCHAR"/>
- <result property="avatarUrl" column="avatar_url" jdbcType="VARCHAR"/>
- <result property="gender" column="gender" jdbcType="TINYINT"/>
- <result property="country" column="country" jdbcType="VARCHAR"/>
- <result property="province" column="province" jdbcType="VARCHAR"/>
- <result property="city" column="city" jdbcType="VARCHAR"/>
- <result property="language" column="language" jdbcType="VARCHAR"/>
- <result property="sessionKey" column="session_key" jdbcType="VARCHAR"/>
- <result property="accessToken" column="access_token" jdbcType="VARCHAR"/>
- <result property="refreshToken" column="refresh_token" jdbcType="VARCHAR"/>
- <result property="expiresIn" column="expires_in" jdbcType="INTEGER"/>
- <result property="createdTime" column="created_time" jdbcType="TIMESTAMP"/>
- <result property="updatedTime" column="updated_time" jdbcType="TIMESTAMP"/>
- </resultMap>
- <sql id="Base_Column_List">
- id,user_id,openid,
- unionid,nickname,avatar_url,
- gender,country,province,
- city,language,session_key,
- access_token,refresh_token,expires_in,
- created_time,updated_time
- </sql>
- </mapper>
|