UnlockingAdminMapper.xml 511 B

12345678910111213
  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.template.mapper.UnlockingAdminMapper">
  4. <select id="key" resultType="com.template.model.pojo.UnlockingAdmin">
  5. SELECT u.*
  6. FROM `unlocking_admin` u
  7. where u.deleted = 0
  8. and #{date} > u.start_time
  9. and u.end_time > #{date}
  10. and u.house_number_id = #{houseNumberId}
  11. </select>
  12. </mapper>