UserLoginMapper.xml 1.0 KB

1234567891011121314151617181920212223
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <!DOCTYPE mapper
  3. PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
  4. "http://mybatis.org/dtd/mybatis-3-mapper.dtd">
  5. <mapper namespace="com.futu.course.dao.UserLoginMapper">
  6. <resultMap id="BaseResultMap" type="com.futu.course.domain.UserLogin">
  7. <id property="id" column="id" jdbcType="BIGINT"/>
  8. <result property="openid" column="openid" jdbcType="BIGINT"/>
  9. <result property="unionid" column="unionid" jdbcType="BIGINT"/>
  10. <result property="nickname" column="nickname" jdbcType="VARCHAR"/>
  11. <result property="phone" column="phone" jdbcType="VARCHAR"/>
  12. <result property="password" column="password" jdbcType="VARCHAR"/>
  13. <result property="createTime" column="create_time" jdbcType="TIMESTAMP"/>
  14. <result property="updateTime" column="update_time" jdbcType="TIMESTAMP"/>
  15. </resultMap>
  16. <sql id="Base_Column_List">
  17. id,openid,unionid,
  18. nickname,phone,password,
  19. create_time,update_time
  20. </sql>
  21. </mapper>