123456789101112131415161718192021222324252627282930313233343536373839404142 |
- <?xml version="1.0" encoding="UTF-8"?>
- <!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" "http://mybatis.org/dtd/mybatis-3-mapper.dtd">
- <mapper namespace="com.fjhx.customer.mapper.xiaoman.XiaomanConfigMapper">
- <select id="getList" resultType="com.fjhx.customer.entity.xiaoman.vo.XiaomanConfigVo">
- select
- xc.id,
- xc.client_id,
- xc.client_secret,
- xc.username,
- xc.password,
- xc.access_token,
- xc.refresh_token,
- xc.expire_time,
- xc.last_token_time,
- xc.scope,
- xc.grant_type,
- xc.token_url,
- xc.refresh_token_url
- from xiaoman_config xc
- ${ew.customSqlSegment}
- </select>
- <select id="getPage" resultType="com.fjhx.customer.entity.xiaoman.vo.XiaomanConfigVo">
- select
- xc.id,
- xc.client_id,
- xc.client_secret,
- xc.username,
- xc.password,
- xc.access_token,
- xc.refresh_token,
- xc.expire_time,
- xc.last_token_time,
- xc.scope,
- xc.grant_type,
- xc.token_url,
- xc.refresh_token_url
- from xiaoman_config xc
- ${ew.customSqlSegment}
- </select>
- </mapper>
|