sql+=" left join ( select ei.depart_id ,count( eee.equip_info_id) 'total_count' ,ifnull( SUM( CASE WHEN fff.equip_info_id > '0' THEN 1 ELSE 0 END ),0) as 'yj_count',ifnull( SUM( CASE WHEN ggg.equip_info_id > '0' THEN 1 ELSE 0 END ),0) as 'yc_count'";
sql+=" from ( "+getInspectionEquipIdsSql(departIds,startDate,endDate)+") eee ";
sql+=" left join ( "+getCheckedInspectionEquipIds(departIds,startDate,endDate,null)+" ) fff on fff.equip_info_id = eee.equip_info_id";
sql+=" left join ( "+getCheckedInspectionEquipIds(departIds,startDate,endDate,"0")+" ) ggg on ggg.equip_info_id = eee.equip_info_id ";
sql+=" left join equipment_info ei on eee.equip_info_id = ei.id ";
sql+=" group by ei.depart_id ";
sql+=" ) kkk on d.id = kkk.depart_id ";
sql+=" where d.depart_type = 1 ";
if(StringUtils.isNotEmpty(departIds)){
sql+=" and d.id in ("+JSUtils.quoteEach(departIds,",")+") ";