13 lines
502 B
XML
13 lines
502 B
XML
|
<?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="cn.iocoder.mall.user.dao.OAuth2RefreshTokenMapper">
|
||
|
|
||
|
<insert id="insert" parameterType="OAuth2RefreshTokenDO">
|
||
|
INSERT INTO oauth2_refresh_token (
|
||
|
id, adminId, valid, expires_time, create_time
|
||
|
) VALUES (
|
||
|
#{id}, #{adminId}, #{valid}, #{expiresTime}, #{createTime}
|
||
|
)
|
||
|
</insert>
|
||
|
|
||
|
</mapper>
|