zss
2024-07-15 40c75db6d335a0335e944e5196a102d8837cad6b
performance-server/src/main/resources/mapper/AuxiliaryCorrectionHoursMapper.xml
@@ -49,13 +49,13 @@
        select ach.*,name
        FROM auxiliary_correction_hours ach
        left join user on user.id=ach.name_user
        WHERE name_user in(#{ids})
        <!--<if test="ids !=null and ids != ''">
            WHERE name_user in
        WHERE 1=1
        <if test="ids !=null and ids != ''">
            and name_user in
            <foreach collection="ids" index="index" open="(" separator="," close=")" item="val">
                #{val}
            </foreach>
        </if>-->
        </if>
        ) A
        <if test="ew.customSqlSegment != null and ew.customSqlSegment != ''">
            ${ew.customSqlSegment}