From 4d2e58e36ad968da65ab8c105d503c5318fa9f3b Mon Sep 17 00:00:00 2001 From: zmc <zmc_li@foxmail.com> Date: 星期四, 31 八月 2023 11:30:41 +0800 Subject: [PATCH] 扬尘后端 --- src/main/resources/com/job/zsc/mapper/FugitiveDustMapper.xml | 96 ++++++++++++++++++++++++++++++++++++++++++++--- 1 files changed, 89 insertions(+), 7 deletions(-) diff --git a/src/main/resources/com/job/zsc/mapper/FugitiveDustMapper.xml b/src/main/resources/com/job/zsc/mapper/FugitiveDustMapper.xml index 1234589..04cc427 100644 --- a/src/main/resources/com/job/zsc/mapper/FugitiveDustMapper.xml +++ b/src/main/resources/com/job/zsc/mapper/FugitiveDustMapper.xml @@ -5,21 +5,21 @@ <mapper namespace="com.job.zsc.mapper.FugitiveDustMapper"> <select id="conditonQueryDustHistoryData" resultType="com.job.zsc.pojo.DustSiteData"> - select * - from monitor_site + select a.*,b.* + from ja_t_dust_site_data_info as a join ja_t_dust_site_info as b on a.mn_code = b.mn_code <where> <if test="siteName !=null and siteName != ''"> - Name like concat('%',#{siteName},'%') + b.name like concat('%',#{siteName},'%') </if> <if test="mnCode !=null and mnCode != ''"> - and MN_Code = #{mnCode} + and a.mn_code = #{mnCode} </if> <if test="beginTime != null and endTime != null"> - and Lst between #{beginTime} and #{endTime} + and a.lst between #{beginTime} and #{endTime} </if> <if test="scenarioType != null and scenarioType != '' "> - and Type_Name in + and b.typename in <foreach item="item" collection="scenarioType" separator="," open="(" close=")"> #{item} </foreach> @@ -30,7 +30,7 @@ <!--鍒嗘瀽鏁版嵁--> <select id="analysisdata" resultType="com.job.zsc.pojo.AnalysisDustData"> - select a.* from avg_dust_value as a join ja_t_dust_site_info as b on a.mn_code = b. mn_code + select a.*,b.name,b.duty_company from dust_statistics_value as a join ja_t_dust_site_info as b on a.mn_code = b. mn_code <where> <if test="siteName !=null and siteName != ''"> b.name = #{siteName} @@ -41,4 +41,86 @@ </if> </where> </select> + + + <!-- 鏍规嵁绔欑偣鍚嶅瓧鍜屾椂娈佃繘琛岀粺璁″垎鏋�--> + <select id="analysisByTime" resultType="com.job.zsc.pojo.AnalysisDustData"> + select c.name,d.* + from ja_t_dust_site_info as c join + (select + a.mn_code as mn_code, + DATE(a.lst) as lst, + ROUND(AVG(a.dust_value),3) as day_avg, + min(a.dust_value) as min, + max(a.dust_value) as max, + CONCAT(ROUND(COUNT(*)/96*100, 2), '%') as day_online, + CONCAT(ROUND(SUM(CASE WHEN a.dust_value >0 THEN 1 ELSE 0 END)/96 *100, 2), '%') as day_valid, + CONCAT(ROUND(SUM(CASE WHEN a.dust_value >= 1 THEN 1 ELSE 0 END)/96*100,2),'%') as day_exceeding + from ja_t_dust_site_data_info as a join ja_t_dust_site_info as b on a.mn_code = b.mn_code + <where> + <if test="siteName !=null and siteName != ''"> + b.name = #{siteName} + </if> + + <if test="beginTime != null and endTime != null"> + and a.lst between #{beginTime} and #{endTime} + </if> + </where> + GROUP BY a.mn_code,DATE(a.lst) + order by lst asc ) as d on c.mn_code = d.mn_code + </select> + + <!--鏉′欢鏌ヨ寮傚父鏁版嵁--> + <select id="getExceptionData" resultType="com.job.zsc.pojo.DustExceptionData"> + select b.name,b.typename,b.address,b.duty_company,a.* + from dust_exception_data as a join ja_t_dust_site_info as b on a.mn_code = b.mn_code + <where> + <if test="siteName !=null and siteName != ''"> + b.name = #{siteName} + </if> + + <if test="exceptionType != null and exceptionType != '' "> + and a.exception_type in + <foreach item="item" collection="exceptionType" separator="," open="(" close=")"> + #{item} + </foreach> + </if> + + <if test="beginTime != null and endTime != null"> + and (a.begin_time between #{beginTime} and #{endTime} or a.end_time between #{beginTime} and #{endTime}) + </if> + </where> + </select> + + + <!-- 鏍规嵁鏌愭鏃堕棿鍐呮煇涓紓甯哥被鍨嬫煡璇㈠搴旂殑搴楅摵鍚嶇О鍜岃澶囩紪鍙�--> + <select id="getExceptionSitenameAndCode" resultType="com.job.zsc.pojo.DustExceptionData"> + select DISTINCT b.name,a.mn_code + from dust_exception_data as a join ja_t_dust_site_info as b on a.mn_code = b.mn_code + <where> + <if test="exceptionType !=null and exceptionType != ''"> + a.exception_type = #{exceptionType} + </if> + + <if test="beginTime != null and endTime != null"> + and (a.begin_time between #{beginTime} and #{endTime} or a.end_time between #{beginTime} and #{endTime}) + </if> + </where> + </select> + +<!-- 鏉′欢鏌ヨ鍘嗗彶鏁版嵁--> + <select id="conditonQueryHistoryData" resultType="com.job.zsc.pojo.DustSiteData"> + select a.*,b.name,b.duty_Company + from ja_t_dust_site_data_info as a join ja_t_dust_site_info as b on a.mn_code = b.mn_code + <where> + <if test="siteName !=null and siteName != ''"> + b.name = #{siteName} + </if> + + <if test="beginTime != null and endTime != null"> + and a.lst between #{beginTime} and #{endTime} + </if> + </where> + order by a.lst asc + </select> </mapper> \ No newline at end of file -- Gitblit v1.9.3