You can not select more than 25 topics Topics must start with a chinese character,a letter or number, can include dashes ('-') and can be up to 35 characters long.

SysTokenMapper.xml 840 B

4 years ago
1234567891011121314151617181920
  1. <?xml version="1.0" encoding="UTF-8" ?>
  2. <!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" "http://mybatis.org/dtd/mybatis-3-mapper.dtd" >
  3. <mapper namespace="com.imitate.common.shiro.mapper.SysTokenMapper">
  4. <resultMap id="rm" type="com.imitate.common.shiro.pojo.SysToken">
  5. <result property="id" jdbcType="BIGINT" column="id"/>
  6. <result property="userId" jdbcType="INTEGER" column="user_id"/>
  7. <result property="action" jdbcType="VARCHAR" column="action"/>
  8. <result property="value" jdbcType="VARCHAR" column="value"/>
  9. <result property="createTime" jdbcType="TIMESTAMP" column="create_time"/>
  10. <result property="updateTime" jdbcType="TIMESTAMP" column="update_time"/>
  11. <result property="expireTime" jdbcType="TIMESTAMP" column="expire_time"/>
  12. </resultMap>
  13. </mapper>

No Description