12345678910111213141516171819 |
- <?xml version="1.0" encoding="UTF-8"?>
- <!DOCTYPE mapper
- PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
- "http://mybatis.org/dtd/mybatis-3-mapper.dtd">
- <mapper namespace="com.zhgd.scs.mapper.EnvThresholdMapper">
- <select id="getRepetition" resultType="com.zhgd.scs.domain.EnvThreshold">
- SELECT *
- FROM `env_threshold`
- WHERE project_id = #{projectId}
- AND name != #{name}
- <foreach collection="week" index="index" item="w" open=" " close=" ">
- AND `week` like CONCAT('%', #{w} ,'%')
- </foreach>
- AND (
- (start_time <= TIME(#{startTime}) AND end_time >= TIME(#{startTime}))
- OR (start_time <= TIME(#{endTime}) AND end_time >= TIME(#{endTime}))
- )
- </select>
- </mapper>
|