zhongrj
2025-02-11 b1e8a099eb3117bcbd5f2e0c9a2eb0accabd8cbf
src/main/java/org/springblade/modules/yw/mapper/RescueTeamMapper.xml
@@ -41,13 +41,16 @@
    <!--自定义分页查询-->
    <select id="getStatisticData" resultType="java.util.Map">
        SELECT
            case when type=1 then '园区'
            when type =2 then '企业'
            end as type,
            team_name as type,
            count(*) AS num
        FROM
            yw_rescue_team
        GROUP BY type
        <where>
            <if test="rescueTeam.type!=null">
                and type = #{rescueTeam.type}
            </if>
        </where>
        GROUP BY team_name
    </select>
</mapper>