IdxMapper.xml 452 B

12345678910111213141516
  1. <?xml version="1.0" encoding="UTF-8" ?>
  2. <!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" "mybatis-3-mapper.dtd">
  3. <mapper namespace="cn.xyz.mapper.IdxMapper">
  4. <insert id="insert" parameterType="cn.xyz.mianshi.vo.IdxVO">
  5. <selectKey resultType="java.lang.Integer" keyProperty="id">
  6. <![CDATA[
  7. SELECT LAST_INSERT_ID()
  8. ]]>
  9. </selectKey>
  10. <![CDATA[
  11. REPLACE INTO idx_user (stub) VALUES ('a')
  12. ]]>
  13. </insert>
  14. </mapper>