WxWdbmMapper.xml 626 B

12345678910111213141516
  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.tofly.feesapi.wxgl.wechatofficalacctmgt.mapper.WxWdbmMapper">
  4. <select id="SelectChargeMaxCode" resultType="int">
  5. select nvl(max(ID), 0) id
  6. from wx_wdbm
  7. </select>
  8. <resultMap id="wxWdCodeMap" type="com.tofly.feesapi.wxgl.wechatofficalacctmgt.entity.WxWdbm">
  9. <id property="id" column="ID"/>
  10. <result property="name" column="NAME"/>
  11. <result property="shownum" column="SHOWNUM"/>
  12. </resultMap>
  13. </mapper>