OauthCliendetailsMapper.xml 1.3 KB

123456789101112131415161718
  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="cc.mrbird.febs.auth.mapper.OauthCliendetailsMapper">
  4. <resultMap id="oauthCliendetails" type="cc.mrbird.febs.common.entity.auth.OauthCliendetails">
  5. <id column="client_id" jdbcType="varchar" property="clientId"/>
  6. <result column="resource_ids" jdbcType="varchar" property="resourceIds"/>
  7. <result column="client_secret" jdbcType="varchar" property="clientSecret"/>
  8. <result column="scope" jdbcType="varchar" property="scope"/>
  9. <result column="authorized_grant_types" jdbcType="varchar" property="authorizedGrantTypes"/>
  10. <result column="web_server_redirect_uri" jdbcType="varchar" property="webServerRedirectUri"/>
  11. <result column="authorities" jdbcType="varchar" property="authorities"/>
  12. <result column="access_token_validity" jdbcType="int" property="accessTokenValidity"/>
  13. <result column="refresh_token_validity" jdbcType="int" property="refreshTokenValidity"/>
  14. <result column="additional_information" jdbcType="varchar" property="additionalInformation"/>
  15. <result column="autoapprove" jdbcType="tinyint" property="autoapprove"/>
  16. </resultMap>
  17. </mapper>