无关风月
2025-04-11 75942ecc2e438012c5ea876715966ace593565a0
1
2
3
4
5
6
7
8
9
10
11
12
13
14
<?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.ruoyi.study.mapper.TStudyLookMapper">
 
    <select id="pictureSelectVoice" resultType="com.ruoyi.study.domain.TStudyLook">
        select sl.*
        from t_study_look sl
        left join t_study s on sl.studyId = s.id
        <where>
            sl.disabled = 0 and s.disabled = 0
            and sl.day = #{day} and sl.week = #{week} and s.quarter = #{quarter}
        </where>
    </select>
</mapper>