WxGsdtMapper.xml 892 B

123456789101112131415161718192021
  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.WxGsdtMapper">
  4. <select id="SelectChargeMaxCode" resultType="int">
  5. select nvl(max(ID),0) id from WX_GSDT
  6. </select>
  7. <resultMap id="wxGsdtMap" type="com.tofly.feesapi.wxgl.wechatofficalacctmgt.entity.WxGsdt">
  8. <id property="id" column="ID"/>
  9. <result property="editDate" column="EDIT_DATE"/>
  10. <result property="editCode" column="EDIT_CODE"/>
  11. <result property="editName" column="EDIT_NAME"/>
  12. <result property="title" column="TITLE"/>
  13. <result property="state" column="STATE"/>
  14. <result property="dtType" column="DT_TYPE"/>
  15. <result property="context" column="CONTEXT"/>
  16. </resultMap>
  17. </mapper>