heheng
2025-09-18 32f55fac90d67b276254b6d91e8b65e8f6e36b48
gkhy-system/src/main/resources/mapper/system/DailySafetyInspectionMapper.xml
@@ -64,8 +64,13 @@
        <if test="haveMainHazard != null and haveMainHazard == 1 ">
            and (main_hazard != '无' and main_hazard != ' ')
        </if>
        <if test="searchCheckUserId != null ">
            and a.id in (select daily_safety_inspection_id from daily_safety_inspection_user where check_user_id = #{searchCheckUserId})
        <if test="searchCheckUserIds != null and !searchCheckUserIds.isEmpty()">
            and a.id in (
            select distinct daily_safety_inspection_id from daily_safety_inspection_user
            where check_user_id in    <foreach collection="searchCheckUserIds" item="group" open="(" separator="," close=")">
            #{group}
        </foreach>
            )
        </if>
        order by a.create_time desc
    </select>