1234567891011121314151617181920212223 |
- <?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.course.dao.UserLoginMapper">
- <resultMap id="BaseResultMap" type="com.futu.course.domain.UserLogin">
- <id property="id" column="id" jdbcType="BIGINT"/>
- <result property="openid" column="openid" jdbcType="BIGINT"/>
- <result property="unionid" column="unionid" jdbcType="BIGINT"/>
- <result property="nickname" column="nickname" jdbcType="VARCHAR"/>
- <result property="phone" column="phone" jdbcType="VARCHAR"/>
- <result property="password" column="password" jdbcType="VARCHAR"/>
- <result property="createTime" column="create_time" jdbcType="TIMESTAMP"/>
- <result property="updateTime" column="update_time" jdbcType="TIMESTAMP"/>
- </resultMap>
- <sql id="Base_Column_List">
- id,openid,unionid,
- nickname,phone,password,
- create_time,update_time
- </sql>
- </mapper>
|