cloudroam
2024-12-30 5d8f5f3defe929b8854c84651a3f0fdb650c362a
src/main/resources/mapper/statisticsAnalysis/FlowerMaterialMapper.xml
@@ -125,9 +125,15 @@
            ))
        </if>
        <if test="dto.flowerStatus !=null and dto.flowerStatus !=''">
            AND  f.status = #{dto.flowerStatus}
        <if test="dto.flowerStatus != null and dto.flowerStatus != ''">
            <if test="dto.flowerStatus == 'OFF'">
                AND f.status IN ('OFF', 'FORCE_OFF')
            </if>
            <if test="dto.flowerStatus != 'OFF'">
                AND f.status = #{dto.flowerStatus}
            </if>
        </if>
        <if test="dto.flowerLevel !=null and dto.flowerLevel !=''">
            AND  f.`level` = #{dto.flowerLevel}
        </if>