| 1234567891011121314151617181920212223 |
- <?xml version="1.0" encoding="UTF-8"?>
- <!-- 核三框架升级自动生成mapper文件 -->
- <!-- 用于存放监察管理序列存放 -->
- <!DOCTYPE mapper
- PUBLIC "-//ibatis.apache.org//DTD Mapper 3.0//EN"
- "http://ibatis.apache.org/dtd/ibatis-3-mapper.dtd">
- <mapper namespace="DEMO_SEQ">
- <!-- DEMO_SEQ_HDMXID 生成序列 -->
- <select id="DEMO_SEQ_HDMXID" resultType="long" useCache="false" >
- select DEMO_SEQ_HDMXID.nextval from dual
- </select>
-
- <!-- DEMO_SEQ_HDID 生成序列 -->
- <select id="DEMO_SEQ_HDID" resultType="long" useCache="false" >
- select DEMO_SEQ_HDID.nextval from dual
- </select>
-
- <!-- DEMO_SEQ_RYID 生成序列 -->
- <select id="DEMO_SEQ_RYID" resultType="long" useCache="false" >
- select DEMO_SEQ_RYID.nextval from dual
- </select>
- </mapper>
|