SmsMapper.xml 356 B

12345678910
  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="cn.ubitech.ttc.dao.SmsMapper">
  4. <select id="selectSmsId" resultType="java.lang.Integer">
  5. SELECT
  6. smsid
  7. FROM sms
  8. order by smsid desc
  9. </select>
  10. </mapper>