SequenceMapper.xml 342 Bytes
<?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.runsa.crmapp.common.mapper.SequenceMapper" >
  <select id="nextVal" parameterType="map" resultType="int">
  	select crm_seq_next_val(#{seq},#{step});
  </select>
</mapper>