| 1234567891011121314151617181920212223 |
- <?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="com.tofly.feesapi.bmgl.mapper.BmSblbMapper">
- <select id="selectMaxId" resultType="decimal">
- SELECT NVL(MAX(to_number(CODE)), 0)
- FROM bm_sblb
- </select>
- <select id="selectName" resultType="com.tofly.feesapi.bmgl.entity.BmSblb">
- SELECT name
- FROM bm_sblb where code=#{code}
- </select>
- <select id="selectListMap" resultType="java.util.Map">
- select * from bm_sblb where 1=1
- </select>
- <resultMap id="bmSblbMap" type="com.tofly.feesapi.bmgl.entity.BmSblb">
- <id property="code" column="CODE"/>
- <result property="name" column="NAME"/>
- <result property="isdisabled" column="ISDISABLED"/>
- </resultMap>
- </mapper>
|