TokenInfoMapper.xml 764 B

12345678910111213141516
  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.jiayue.insu.inclientqn.mapper.TokenInfoMapper">
  4. <resultMap id="tokenInfoMap" type="com.jiayue.insu.inclientqn.entity.TokenInfo">
  5. <id property="id" column="id"/>
  6. <result property="username" column="username"/>
  7. <result property="password" column="password"/>
  8. <result property="tokenurl" column="tokenurl"/>
  9. <result property="downloadurl" column="downloadurl"/>
  10. <result property="stastionType" column="station_type"/>
  11. </resultMap>
  12. </mapper>