AuthorizeLogMapper.xml 542 B

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