SnowflakeMapper.xml 483 B

1234567891011
  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.SnowflakeMapper">
  4. <!-- 开启二级缓存 -->
  5. <cache type="org.mybatis.caches.ehcache.LoggingEhcache"/>
  6. <select id="getlastSnowflake" resultType="cn.ubitech.ttc.entity.Snowflake">
  7. SELECT * FROM snowflake s order by s.groupnum desc,s.num desc limit 0,1
  8. </select>
  9. </mapper>