DEMO_SEQ_Mapper.xml 806 B

1234567891011121314151617181920212223
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <!-- 核三框架升级自动生成mapper文件 -->
  3. <!-- 用于存放监察管理序列存放 -->
  4. <!DOCTYPE mapper
  5. PUBLIC "-//ibatis.apache.org//DTD Mapper 3.0//EN"
  6. "http://ibatis.apache.org/dtd/ibatis-3-mapper.dtd">
  7. <mapper namespace="DEMO_SEQ">
  8. <!-- DEMO_SEQ_HDMXID 生成序列 -->
  9. <select id="DEMO_SEQ_HDMXID" resultType="long" useCache="false" >
  10. select DEMO_SEQ_HDMXID.nextval from dual
  11. </select>
  12. <!-- DEMO_SEQ_HDID 生成序列 -->
  13. <select id="DEMO_SEQ_HDID" resultType="long" useCache="false" >
  14. select DEMO_SEQ_HDID.nextval from dual
  15. </select>
  16. <!-- DEMO_SEQ_RYID 生成序列 -->
  17. <select id="DEMO_SEQ_RYID" resultType="long" useCache="false" >
  18. select DEMO_SEQ_RYID.nextval from dual
  19. </select>
  20. </mapper>