拓恒统一认证授权服务
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

29 lines
1.7KB

  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.tuoheng.mapper.Oauth2RegisteredClientMapper">
  6. <resultMap id="BaseResultMap" type="com.tuoheng.model.dto.Oauth2RegisteredClient">
  7. <id property="id" column="id" jdbcType="VARCHAR"/>
  8. <result property="clientId" column="client_id" jdbcType="VARCHAR"/>
  9. <result property="clientIdIssuedAt" column="client_id_issued_at" jdbcType="TIMESTAMP"/>
  10. <result property="clientSecret" column="client_secret" jdbcType="VARCHAR"/>
  11. <result property="clientSecretExpiresAt" column="client_secret_expires_at" jdbcType="TIMESTAMP"/>
  12. <result property="clientName" column="client_name" jdbcType="VARCHAR"/>
  13. <result property="clientAuthenticationMethods" column="client_authentication_methods" jdbcType="VARCHAR"/>
  14. <result property="authorizationGrantTypes" column="authorization_grant_types" jdbcType="VARCHAR"/>
  15. <result property="redirectUris" column="redirect_uris" jdbcType="VARCHAR"/>
  16. <result property="scopes" column="scopes" jdbcType="VARCHAR"/>
  17. <result property="clientSettings" column="client_settings" jdbcType="VARCHAR"/>
  18. <result property="tokenSettings" column="token_settings" jdbcType="VARCHAR"/>
  19. </resultMap>
  20. <sql id="Base_Column_List">
  21. id,client_id,client_id_issued_at,
  22. client_secret,client_secret_expires_at,client_name,
  23. client_authentication_methods,authorization_grant_types,redirect_uris,
  24. scopes,client_settings,token_settings
  25. </sql>
  26. </mapper>