AppkeyMapper.xml 556 B

1234567891011121314151617
  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.AppkeyMapper">
  4. <!-- 开启二级缓存 -->
  5. <!--<cache type="org.mybatis.caches.ehcache.LoggingEhcache"/>-->
  6. <select id="getAppKeyByNode" resultType="cn.ubitech.ttc.entity.Appkey">
  7. SELECT
  8. k.*
  9. FROM
  10. appkey k
  11. INNER JOIN node_appkey_lk l
  12. on k.id = l.appkeyid
  13. WHERE l.node = #{node}
  14. </select>
  15. </mapper>