| 123456789 |
- <?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.usoftchina.saas.operation.auth.mapper.AuthorizeLogMapper">
- <insert id="insert">
- insert into au_authorize_log(app_id,account_id,client_ip,user_agent,login_time)
- values (#{appId,jdbcType=VARCHAR}, #{accountId,jdbcType=BIGINT}, #{clientIp,jdbcType=VARCHAR},
- #{userAgent,jdbcType=VARCHAR}, #{loginTime,jdbcType=TIMESTAMP})
- </insert>
- </mapper>
|