EquipmentActivityReduceMapper.xml 642 B

12345678910111213141516
  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.cyksj.mapper.EquipmentActivityReduceMapper">
  4. <select id="checkRepeatTimeDuration" resultType="java.lang.Integer">
  5. select count(*) from equipment_activity_reduce where
  6. <if test="id != null">
  7. id != #{id} and
  8. </if>
  9. deleted is true and ((st >= #{st} and st &lt; #{et} or et
  10. >= #{st} and et &lt; #{et}) or (#{st} >= st and #{st} &lt; et or
  11. #{et} >= st and #{et} &lt; et))
  12. limit 1
  13. </select>
  14. </mapper>