IdenAutoincrKeyMapper.xml 591 B

1234567891011
  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.iden.common.mapper.IdenAutoincrKeyMapper">
  4. <update id="updateMaxValue">
  5. <!-- AFTER:更新语句执行后执行selectKey -->
  6. <selectKey resultType="java.lang.Long" keyProperty="maxValue" order="AFTER">
  7. select max_value FROM iden_autoincr_key where key = #{key}
  8. </selectKey>
  9. update iden_autoincr_key set max_value = max_value + 1 where key = #{key}
  10. </update>
  11. </mapper>