|
|
@ -479,7 +479,7 @@ |
|
|
|
left join |
|
|
|
(select HOUR(warning_time) hours,count(*) num,dc_warning.stake_mark,facility_name from dc_warning |
|
|
|
left join dc_facility on dc_warning.stake_mark=dc_facility.stake_mark and dc_facility.facility_type=1 |
|
|
|
where date_format(warning_time,'%Y-%m-%d') = date_format('2024-06-25','%Y-%m-%d') and warning_source=6 |
|
|
|
where date_format(warning_time,'%Y-%m-%d') = date_format(#{warningTime},'%Y-%m-%d') and warning_source=6 |
|
|
|
<if test="facilityId != null "> and dc_facility.id=#{facilityId}</if> |
|
|
|
GROUP BY hours) t2 |
|
|
|
on t1.n = t2.hours |
|
|
@ -488,7 +488,7 @@ |
|
|
|
SELECT distinct DATE(warning.warning_time) AS day, COUNT(*) AS number |
|
|
|
FROM dc_warning as warning |
|
|
|
left join dc_facility on warning.stake_mark=dc_facility.stake_mark and dc_facility.facility_type=1 |
|
|
|
WHERE DATE_FORMAT(warning.warning_time,'%Y-%m') =DATE_FORMAT('2024-06-01','%Y-%m') and warning_source=6 |
|
|
|
WHERE DATE_FORMAT(warning.warning_time,'%Y-%m') =DATE_FORMAT(#{warningTime},'%Y-%m') and warning_source=6 |
|
|
|
<if test="facilityId != null "> and dc_facility.id=#{facilityId}</if> |
|
|
|
GROUP BY day |
|
|
|
ORDER BY day; |
|
|
@ -502,7 +502,7 @@ |
|
|
|
) t1 left join |
|
|
|
(select month(warning_time) hours,count(*) num from dc_warning t1 |
|
|
|
left join dc_facility on t1.stake_mark=dc_facility.stake_mark and dc_facility.facility_type=1 |
|
|
|
where DATE_FORMAT(t1.warning_time,'%Y')=DATE_FORMAT('2024-01-01','%Y') and warning_source=6 |
|
|
|
where DATE_FORMAT(t1.warning_time,'%Y')=DATE_FORMAT(#{warningTime},'%Y') and warning_source=6 |
|
|
|
<if test="facilityId != null "> and dc_facility.id=#{facilityId}</if> |
|
|
|
GROUP BY hours) t2 |
|
|
|
on t1.n = t2.hours |
|
|
|