1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369137013711372137313741375137613771378137913801381138213831384138513861387138813891390139113921393139413951396139713981399140014011402140314041405140614071408140914101411141214131414141514161417141814191420142114221423142414251426142714281429143014311432143314341435143614371438143914401441144214431444144514461447144814491450145114521453 |
- <?xml version="1.0" encoding="UTF-8"?>
- <!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" "http://mybatis.org/dtd/mybatis-3-mapper.dtd">
- <mapper namespace="com.huaxu.dao.MonitorDataReportMapper">
- <resultMap id="MonitorDataChartReportMap" type="com.huaxu.dto.MonitorDataChartReportDeviceDto">
- <result property="devoceCode" column="devoceCode" jdbcType="INTEGER"/>
- <result property="deviceName" column="deviceName" jdbcType="INTEGER"/>
- <collection property="attributeData" resultMap="AttributeData"/>
- </resultMap>
- <resultMap id="AttributeData" type="com.huaxu.dto.MonitorDataChartReportAttributeDto">
- <result property="attributeType" column="attributeType"/>
- <result property="attributeName" column="attributeName"/>
- <result property="unit" column="unit"/>
- <collection property="monitorDataChartReportValue" resultMap="MonitorDataChartReportValue"/>
- </resultMap>
- <resultMap id="MonitorDataChartReportValue" type="com.huaxu.dto.MonitorDataChartReportValueDto">
- <result property="dateLabel" column="dateLabel" />
- <result property="data" column="data"/>
- <result property="date" column="date"/>
- </resultMap>
- <sql id="MonitorDataReportJoins">
- left join sms_device_parm dp on dp.DEVICE_ID=r.DEVICE_ID and dp.ATTRIBUTE_ID = r.ATTRIBUTE_ID
- left join sms_device_attribute da on da.id=r.ATTRIBUTE_ID
- left join sms_device d on d.id=r.DEVICE_ID
- </sql>
- <!-- 图表 -->
- <select id="MonitorDataChartReportByDay" resultMap="MonitorDataChartReportMap">
- SELECT
- r.`HOUR` AS "dateLabel",
- CONCAT( s.SCENE_NAME, r.DEVICE_NAME ) AS "deviceName",
- r.DEVICE_CODE AS "devoceCode",
- r.ATTRIBUTE_NAME AS "attributeName",
- da.unit AS "unit",
- ROUND( sum(r.AVG_VALUE), 2 ) AS "data",
- max(r.COLLECT_DATE) AS "date"
- FROM sms_device_parm p
- LEFT JOIN sms_day_report r ON p.DEVICE_ID = r.DEVICE_ID AND p.ATTRIBUTE_ID = r.ATTRIBUTE_ID
- LEFT JOIN sms_device_attribute da ON da.id = r.ATTRIBUTE_ID
- LEFT JOIN sms_device d ON d.id = r.DEVICE_ID
- left join sms_scene s on s.id=p.PARENT_SCENE_ID
- where p.IS_CHART = 1 and p.`STATUS`= 1 and d.ENABLE_STATE = 1 and d.`STATUS`= 1
- and p.PARENT_SCENE_ID=#{sceneId}
- and r.year=#{year}
- and r.month=#{month}
- and r.day=#{day}
- <if test="tenantId != null and tenantId != '' ">
- and d.tenant_id = #{tenantId}
- </if>
- <if test="userType!=null and userType!=-999 and userType!=-9999 and programItems != null and programItems.size() > 0">
- <if test="permissonType == 5 or permissonType == 2">
- and ( d.DEPT_ORG_ID in
- <foreach collection="programItems" item="item" open="(" close=")" separator=",">
- #{item.orgId}
- </foreach>
- or
- d.COMPANY_ORG_ID in
- <foreach collection="programItems" item="item" open="(" close=")" separator=",">
- #{item.orgId}
- </foreach>
- )
- </if>
- <if test="permissonType == 4 or permissonType == 3">
- and d.DEPT_ORG_ID in
- <foreach collection="programItems" item="item" open="(" close=")" separator=",">
- #{item.orgId}
- </foreach>
- </if>
- <if test="permissonType == 1">
- and d.COMPANY_ORG_ID in
- <foreach collection="programItems" item="item" open="(" close=")" separator=",">
- #{item.orgId}
- </foreach>
- and (d.DEPT_ORG_ID is null or d.DEPT_ORG_ID =0)
- </if>
- </if>
- group by r.hour ,s.SCENE_NAME,r.DEVICE_NAME,r.DEVICE_CODE,r.ATTRIBUTE_NAME,da.unit
- ORDER BY r.`HOUR` ASC
- </select>
- <select id="MonitorDataChartReportByMonth" resultMap="MonitorDataChartReportMap">
- SELECT
- r.`day` AS "dateLabel",
- CONCAT( s.SCENE_NAME, r.DEVICE_NAME ) AS "deviceName",
- r.DEVICE_CODE AS "devoceCode",
- r.ATTRIBUTE_NAME AS "attributeName",
- da.unit AS "unit",
- ROUND( sum(r.AVG_VALUE), 2 ) AS "data",
- max(r.COLLECT_DATE) AS "date"
- FROM sms_device_parm p
- LEFT JOIN sms_month_report r ON p.DEVICE_ID = r.DEVICE_ID AND p.ATTRIBUTE_ID = r.ATTRIBUTE_ID
- LEFT JOIN sms_device_attribute da ON da.id = r.ATTRIBUTE_ID
- LEFT JOIN sms_device d ON d.id = r.DEVICE_ID
- left join sms_scene s on s.id=p.PARENT_SCENE_ID
- where p.IS_CHART = 1 and p.`STATUS`= 1 and d.ENABLE_STATE = 1 and d.`STATUS`= 1
- and p.PARENT_SCENE_ID=#{sceneId}
- and r.year=#{year}
- and r.month=#{month}
- <if test="tenantId != null and tenantId != '' ">
- and d.tenant_id = #{tenantId}
- </if>
- <if test="userType!=null and userType!=-999 and userType!=-9999 and programItems != null and programItems.size() > 0">
- <if test="permissonType == 5 or permissonType == 2">
- and ( d.DEPT_ORG_ID in
- <foreach collection="programItems" item="item" open="(" close=")" separator=",">
- #{item.orgId}
- </foreach>
- or
- d.COMPANY_ORG_ID in
- <foreach collection="programItems" item="item" open="(" close=")" separator=",">
- #{item.orgId}
- </foreach>
- )
- </if>
- <if test="permissonType == 4 or permissonType == 3">
- and d.DEPT_ORG_ID in
- <foreach collection="programItems" item="item" open="(" close=")" separator=",">
- #{item.orgId}
- </foreach>
- </if>
- <if test="permissonType == 1">
- and d.COMPANY_ORG_ID in
- <foreach collection="programItems" item="item" open="(" close=")" separator=",">
- #{item.orgId}
- </foreach>
- and (d.DEPT_ORG_ID is null or d.DEPT_ORG_ID =0)
- </if>
- </if>
- group by r.day ,s.SCENE_NAME,r.DEVICE_NAME,r.DEVICE_CODE,r.ATTRIBUTE_NAME,da.unit
- ORDER BY r.`day` ASC
- </select>
- <select id="MonitorDataChartReportByYear" resultMap="MonitorDataChartReportMap">
- SELECT
- r.`month` AS "dateLabel",
- CONCAT( s.SCENE_NAME, r.DEVICE_NAME ) AS "deviceName",
- r.DEVICE_CODE AS "devoceCode",
- r.ATTRIBUTE_NAME AS "attributeName",
- da.unit AS "unit",
- ROUND( sum(r.AVG_VALUE), 2 ) AS "data",
- max(r.COLLECT_DATE) AS "date"
- FROM sms_device_parm p
- LEFT JOIN sms_year_report r ON p.DEVICE_ID = r.DEVICE_ID AND p.ATTRIBUTE_ID = r.ATTRIBUTE_ID
- LEFT JOIN sms_device_attribute da ON da.id = r.ATTRIBUTE_ID
- LEFT JOIN sms_device d ON d.id = r.DEVICE_ID
- left join sms_scene s on s.id=p.PARENT_SCENE_ID
- where p.IS_CHART = 1 and p.`STATUS`= 1 and d.ENABLE_STATE = 1 and d.`STATUS`= 1
- and p.PARENT_SCENE_ID=#{sceneId}
- and r.year=#{year}
- <if test="tenantId != null and tenantId != '' ">
- and d.tenant_id = #{tenantId}
- </if>
- <if test="userType!=null and userType!=-999 and userType!=-9999 and programItems != null and programItems.size() > 0">
- <if test="permissonType == 5 or permissonType == 2">
- and ( d.DEPT_ORG_ID in
- <foreach collection="programItems" item="item" open="(" close=")" separator=",">
- #{item.orgId}
- </foreach>
- or
- d.COMPANY_ORG_ID in
- <foreach collection="programItems" item="item" open="(" close=")" separator=",">
- #{item.orgId}
- </foreach>
- )
- </if>
- <if test="permissonType == 4 or permissonType == 3">
- and d.DEPT_ORG_ID in
- <foreach collection="programItems" item="item" open="(" close=")" separator=",">
- #{item.orgId}
- </foreach>
- </if>
- <if test="permissonType == 1">
- and d.COMPANY_ORG_ID in
- <foreach collection="programItems" item="item" open="(" close=")" separator=",">
- #{item.orgId}
- </foreach>
- and (d.DEPT_ORG_ID is null or d.DEPT_ORG_ID =0)
- </if>
- </if>
- group by r.month ,s.SCENE_NAME,r.DEVICE_NAME,r.DEVICE_CODE,r.ATTRIBUTE_NAME,da.unit
- ORDER BY r.`month` ASC
- </select>
- <!-- 对比————用水量、耗电量 -->
- <select id="MonitorDataEnergyReportByDay" resultMap="MonitorDataChartReportMap">
- SELECT
- r.`HOUR` AS "dateLabel",
- IF( p.parm_type = 5, '耗电量', IF( p.parm_type = 4, '取水量', '用水量' ) ) AS "attributeName",
- s.SCENE_NAME AS "deviceName",
- p.parm_type AS "attributeType",
- da.unit AS "unit",
- ifnull( ROUND( sum( r.SUM_VALUE ), 2 ), 0 ) AS "data",
- max( r.COLLECT_DATE ) AS "date"
- FROM sms_device_parm p
- LEFT JOIN sms_day_report r ON p.DEVICE_ID = r.DEVICE_ID AND p.ATTRIBUTE_ID = r.ATTRIBUTE_ID
- left join sms_scene s on s.id=p.parent_scene_id
- left join sms_device_attribute da ON da.id = p.ATTRIBUTE_ID
- LEFT JOIN sms_device d ON d.id = r.DEVICE_ID
- WHERE p.`STATUS`= 1
- <if test="sceneType != null and sceneType == 1">
- and p.parm_type in (4,5)
- </if>
- <if test="sceneType == null or sceneType == 0">
- and p.parm_type in (3,5)
- </if>
- and d.ENABLE_STATE = 1 and d.`STATUS`= 1
- AND r.YEAR = #{year} and r.month=#{month} and r.day=#{day}
- <if test="sceneIds != null and sceneIds.size()>0">
- and p.PARENT_SCENE_ID in
- <foreach collection="sceneIds" item="item" open="(" close=")" separator=",">
- #{item}
- </foreach>
- </if>
- <if test="tenantId != null and tenantId != '' ">
- and d.tenant_id = #{tenantId}
- </if>
- <if test="userType!=null and userType!=-999 and userType!=-9999 and programItems != null and programItems.size() > 0">
- <if test="permissonType == 5 or permissonType == 2">
- and ( d.DEPT_ORG_ID in
- <foreach collection="programItems" item="item" open="(" close=")" separator=",">
- #{item.orgId}
- </foreach>
- or
- d.COMPANY_ORG_ID in
- <foreach collection="programItems" item="item" open="(" close=")" separator=",">
- #{item.orgId}
- </foreach>
- )
- </if>
- <if test="permissonType == 4 or permissonType == 3">
- and d.DEPT_ORG_ID in
- <foreach collection="programItems" item="item" open="(" close=")" separator=",">
- #{item.orgId}
- </foreach>
- </if>
- <if test="permissonType == 1">
- and d.COMPANY_ORG_ID in
- <foreach collection="programItems" item="item" open="(" close=")" separator=",">
- #{item.orgId}
- </foreach>
- and (d.DEPT_ORG_ID is null or d.DEPT_ORG_ID =0)
- </if>
- </if>
- GROUP BY s.SCENE_NAME,p.parm_type,da.unit,r.HOUR
- order by r.`hour` asc
- </select>
- <select id="MonitorDataEnergyReportByMonth" resultMap="MonitorDataChartReportMap">
- SELECT
- r.`day` AS "dateLabel",
- <if test="sceneType != null and sceneType == 1">
- IF( p.parm_type = 5, '耗电量','取水量' ) AS "attributeName",
- </if>
- <if test="sceneType == null or sceneType == 0">
- IF( p.parm_type = 5, '耗电量','用水量' ) AS "attributeName",
- </if>
- s.SCENE_NAME AS "deviceName",
- p.parm_type AS "attributeType",
- da.unit AS "unit",
- ifnull( ROUND( sum( r.SUM_VALUE ), 2 ), 0 ) AS "data",
- max( r.COLLECT_DATE ) AS "date"
- FROM sms_device_parm p
- LEFT JOIN sms_month_report r ON p.DEVICE_ID = r.DEVICE_ID AND p.ATTRIBUTE_ID = r.ATTRIBUTE_ID
- left join sms_scene s on s.id=p.parent_scene_id
- left join sms_device_attribute da ON da.id = p.ATTRIBUTE_ID
- LEFT JOIN sms_device d ON d.id = r.DEVICE_ID
- WHERE p.`STATUS`= 1
- <if test="sceneType != null and sceneType == 1">
- and p.parm_type in (4,5)
- </if>
- <if test="sceneType == null or sceneType == 0">
- and p.parm_type in (3,5)
- </if>
- and d.ENABLE_STATE = 1 and d.`STATUS`= 1
- AND r.YEAR = #{year} and r.month=#{month}
- <if test="sceneIds != null and sceneIds.size()>0">
- and p.PARENT_SCENE_ID in
- <foreach collection="sceneIds" item="item" open="(" close=")" separator=",">
- #{item}
- </foreach>
- </if>
- <if test="tenantId != null and tenantId != '' ">
- and d.tenant_id = #{tenantId}
- </if>
- <if test="userType!=null and userType!=-999 and userType!=-9999 and programItems != null and programItems.size() > 0">
- <if test="permissonType == 5 or permissonType == 2">
- and ( d.DEPT_ORG_ID in
- <foreach collection="programItems" item="item" open="(" close=")" separator=",">
- #{item.orgId}
- </foreach>
- or
- d.COMPANY_ORG_ID in
- <foreach collection="programItems" item="item" open="(" close=")" separator=",">
- #{item.orgId}
- </foreach>
- )
- </if>
- <if test="permissonType == 4 or permissonType == 3">
- and d.DEPT_ORG_ID in
- <foreach collection="programItems" item="item" open="(" close=")" separator=",">
- #{item.orgId}
- </foreach>
- </if>
- <if test="permissonType == 1">
- and d.COMPANY_ORG_ID in
- <foreach collection="programItems" item="item" open="(" close=")" separator=",">
- #{item.orgId}
- </foreach>
- and (d.DEPT_ORG_ID is null or d.DEPT_ORG_ID =0)
- </if>
- </if>
- GROUP BY s.SCENE_NAME,p.parm_type,da.unit,r.day
- order by r.`day` asc
- </select>
- <select id="MonitorDataEnergyReportByYear" resultMap="MonitorDataChartReportMap">
- SELECT
- r.`month` AS "dateLabel",
- <if test="sceneType != null and sceneType == 1">
- IF( p.parm_type = 5, '耗电量','取水量' ) AS "attributeName",
- </if>
- <if test="sceneType == null or sceneType == 0">
- IF( p.parm_type = 5, '耗电量','用水量' ) AS "attributeName",
- </if>
- s.SCENE_NAME AS "deviceName",
- p.parm_type AS "attributeType",
- da.unit AS "unit",
- ifnull( ROUND( sum( r.SUM_VALUE ), 2 ), 0 ) AS "data",
- max( r.COLLECT_DATE ) AS "date"
- FROM sms_device_parm p
- LEFT JOIN sms_year_report r ON p.DEVICE_ID = r.DEVICE_ID AND p.ATTRIBUTE_ID = r.ATTRIBUTE_ID
- left join sms_scene s on s.id=p.parent_scene_id
- left join sms_device_attribute da ON da.id = p.ATTRIBUTE_ID
- LEFT JOIN sms_device d ON d.id = r.DEVICE_ID
- WHERE p.`STATUS`= 1
- <if test="sceneType != null and sceneType == 1">
- and p.parm_type in (4,5)
- </if>
- <if test="sceneType == null or sceneType == 0">
- and p.parm_type in (3,5)
- </if>
- and d.ENABLE_STATE = 1 and d.`STATUS`= 1
- AND r.YEAR = #{year}
- <if test="sceneIds != null and sceneIds.size()>0">
- and p.PARENT_SCENE_ID in
- <foreach collection="sceneIds" item="item" open="(" close=")" separator=",">
- #{item}
- </foreach>
- </if>
- <if test="tenantId != null and tenantId != '' ">
- and d.tenant_id = #{tenantId}
- </if>
- <if test="userType!=null and userType!=-999 and userType!=-9999 and programItems != null and programItems.size() > 0">
- <if test="permissonType == 5 or permissonType == 2">
- and ( d.DEPT_ORG_ID in
- <foreach collection="programItems" item="item" open="(" close=")" separator=",">
- #{item.orgId}
- </foreach>
- or
- d.COMPANY_ORG_ID in
- <foreach collection="programItems" item="item" open="(" close=")" separator=",">
- #{item.orgId}
- </foreach>
- )
- </if>
- <if test="permissonType == 4 or permissonType == 3">
- and d.DEPT_ORG_ID in
- <foreach collection="programItems" item="item" open="(" close=")" separator=",">
- #{item.orgId}
- </foreach>
- </if>
- <if test="permissonType == 1">
- and d.COMPANY_ORG_ID in
- <foreach collection="programItems" item="item" open="(" close=")" separator=",">
- #{item.orgId}
- </foreach>
- and (d.DEPT_ORG_ID is null or d.DEPT_ORG_ID =0)
- </if>
- </if>
- GROUP BY s.SCENE_NAME,p.parm_type,da.unit,r.month
- order by r.`month` asc
- </select>
- <!-- 对比————PH、余氯、浊度 -->
- <select id="MonitorDataQualityReportByDay" resultMap="MonitorDataChartReportMap">
- SELECT
- r.`HOUR` AS "dateLabel",
- if(p.parm_type=7,'PH',if(p.parm_type=11,'余氯','浊度')) as "attributeName",
- s.SCENE_NAME AS "deviceName",
- p.parm_type AS "attributeType",
- da.unit AS "unit",
- ifnull( ROUND( sum( r.SUM_VALUE ), 2 ), 0 ) AS "data",
- max( r.COLLECT_DATE ) AS "date"
- FROM sms_device_parm p
- LEFT JOIN sms_day_report r ON p.DEVICE_ID = r.DEVICE_ID AND p.ATTRIBUTE_ID = r.ATTRIBUTE_ID
- left join sms_scene s on s.id=p.parent_scene_id
- left join sms_device_attribute da ON da.id = p.ATTRIBUTE_ID
- LEFT JOIN sms_device d ON d.id = r.DEVICE_ID
- WHERE p.`STATUS`= 1 and p.parm_type in (7,11,9) and d.ENABLE_STATE = 1 and d.`STATUS`= 1
- AND r.YEAR = #{year} and r.month=#{month} and r.day=#{day}
- <if test="sceneIds != null and sceneIds.size()>0">
- and p.PARENT_SCENE_ID in
- <foreach collection="sceneIds" item="item" open="(" close=")" separator=",">
- #{item}
- </foreach>
- </if>
- <if test="tenantId != null and tenantId != '' ">
- and d.tenant_id = #{tenantId}
- </if>
- <if test="userType!=null and userType!=-999 and userType!=-9999 and programItems != null and programItems.size() > 0">
- <if test="permissonType == 5 or permissonType == 2">
- and ( d.DEPT_ORG_ID in
- <foreach collection="programItems" item="item" open="(" close=")" separator=",">
- #{item.orgId}
- </foreach>
- or
- d.COMPANY_ORG_ID in
- <foreach collection="programItems" item="item" open="(" close=")" separator=",">
- #{item.orgId}
- </foreach>
- )
- </if>
- <if test="permissonType == 4 or permissonType == 3">
- and d.DEPT_ORG_ID in
- <foreach collection="programItems" item="item" open="(" close=")" separator=",">
- #{item.orgId}
- </foreach>
- </if>
- <if test="permissonType == 1">
- and d.COMPANY_ORG_ID in
- <foreach collection="programItems" item="item" open="(" close=")" separator=",">
- #{item.orgId}
- </foreach>
- and (d.DEPT_ORG_ID is null or d.DEPT_ORG_ID =0)
- </if>
- </if>
- GROUP BY s.SCENE_NAME,p.parm_type,da.unit,r.HOUR
- order by r.`hour` asc
- </select>
- <select id="MonitorDataQualityReportByMonth" resultMap="MonitorDataChartReportMap">
- SELECT
- r.`day` AS "dateLabel",
- if(p.parm_type=7,'PH',if(p.parm_type=11,'余氯','浊度')) as "attributeName",
- s.SCENE_NAME AS "deviceName",
- p.parm_type AS "attributeType",
- da.unit AS "unit",
- ifnull( ROUND( sum( r.SUM_VALUE ), 2 ), 0 ) AS "data",
- max( r.COLLECT_DATE ) AS "date"
- FROM sms_device_parm p
- LEFT JOIN sms_month_report r ON p.DEVICE_ID = r.DEVICE_ID AND p.ATTRIBUTE_ID = r.ATTRIBUTE_ID
- left join sms_scene s on s.id=p.parent_scene_id
- left join sms_device_attribute da ON da.id = p.ATTRIBUTE_ID
- LEFT JOIN sms_device d ON d.id = r.DEVICE_ID
- WHERE p.`STATUS`= 1 and p.parm_type in (7,11,9) and d.ENABLE_STATE = 1 and d.`STATUS`= 1
- AND r.YEAR = #{year} and r.month=#{month}
- <if test="sceneIds != null and sceneIds.size()>0">
- and p.PARENT_SCENE_ID in
- <foreach collection="sceneIds" item="item" open="(" close=")" separator=",">
- #{item}
- </foreach>
- </if>
- <if test="tenantId != null and tenantId != '' ">
- and d.tenant_id = #{tenantId}
- </if>
- <if test="userType!=null and userType!=-999 and userType!=-9999 and programItems != null and programItems.size() > 0">
- <if test="permissonType == 5 or permissonType == 2">
- and ( d.DEPT_ORG_ID in
- <foreach collection="programItems" item="item" open="(" close=")" separator=",">
- #{item.orgId}
- </foreach>
- or
- d.COMPANY_ORG_ID in
- <foreach collection="programItems" item="item" open="(" close=")" separator=",">
- #{item.orgId}
- </foreach>
- )
- </if>
- <if test="permissonType == 4 or permissonType == 3">
- and d.DEPT_ORG_ID in
- <foreach collection="programItems" item="item" open="(" close=")" separator=",">
- #{item.orgId}
- </foreach>
- </if>
- <if test="permissonType == 1">
- and d.COMPANY_ORG_ID in
- <foreach collection="programItems" item="item" open="(" close=")" separator=",">
- #{item.orgId}
- </foreach>
- and (d.DEPT_ORG_ID is null or d.DEPT_ORG_ID =0)
- </if>
- </if>
- GROUP BY s.SCENE_NAME,p.parm_type,da.unit,r.day
- order by r.`day` asc
- </select>
- <select id="MonitorDataQualityReportByYear" resultMap="MonitorDataChartReportMap">
- SELECT
- r.`month` AS "dateLabel",
- if(p.parm_type=7,'PH',if(p.parm_type=11,'余氯','浊度')) as "attributeName",
- s.SCENE_NAME AS "deviceName",
- p.parm_type AS "attributeType",
- da.unit AS "unit",
- ifnull( ROUND( sum( r.SUM_VALUE ), 2 ), 0 ) AS "data",
- max( r.COLLECT_DATE ) AS "date"
- FROM sms_device_parm p
- LEFT JOIN sms_year_report r ON p.DEVICE_ID = r.DEVICE_ID AND p.ATTRIBUTE_ID = r.ATTRIBUTE_ID
- left join sms_scene s on s.id=p.parent_scene_id
- left join sms_device_attribute da ON da.id = p.ATTRIBUTE_ID
- LEFT JOIN sms_device d ON d.id = r.DEVICE_ID
- WHERE p.`STATUS`= 1 and p.parm_type in (7,11,9)
- AND r.YEAR = #{year} and d.ENABLE_STATE = 1 and d.`STATUS`= 1
- <if test="sceneIds != null and sceneIds.size()>0">
- and p.PARENT_SCENE_ID in
- <foreach collection="sceneIds" item="item" open="(" close=")" separator=",">
- #{item}
- </foreach>
- </if>
- <if test="tenantId != null and tenantId != '' ">
- and d.tenant_id = #{tenantId}
- </if>
- <if test="userType!=null and userType!=-999 and userType!=-9999 and programItems != null and programItems.size() > 0">
- <if test="permissonType == 5 or permissonType == 2">
- and ( d.DEPT_ORG_ID in
- <foreach collection="programItems" item="item" open="(" close=")" separator=",">
- #{item.orgId}
- </foreach>
- or
- d.COMPANY_ORG_ID in
- <foreach collection="programItems" item="item" open="(" close=")" separator=",">
- #{item.orgId}
- </foreach>
- )
- </if>
- <if test="permissonType == 4 or permissonType == 3">
- and d.DEPT_ORG_ID in
- <foreach collection="programItems" item="item" open="(" close=")" separator=",">
- #{item.orgId}
- </foreach>
- </if>
- <if test="permissonType == 1">
- and d.COMPANY_ORG_ID in
- <foreach collection="programItems" item="item" open="(" close=")" separator=",">
- #{item.orgId}
- </foreach>
- and (d.DEPT_ORG_ID is null or d.DEPT_ORG_ID =0)
- </if>
- </if>
- GROUP BY s.SCENE_NAME,p.parm_type,da.unit,r.month
- order by r.`month` asc
- </select>
- <!-- 对比————报警 -->
- <select id="DeviceAlarmReport" resultMap="MonitorDataChartReportMap">
- select
- a.*,DATE_ADD(#{beginDate},INTERVAL a.dateLabel-1 ${dateType}) as "date"
- from (
- select
- ${dateType}(ad.ALARM_START_TIME) as "dateLabel"
- <if test="dateType != null and dateType == 'month'">
- ,DATE_FORMAT(max(ad.ALARM_START_TIME),'%Y-%m') as "dateStringLabel"
- </if>
- <if test="dateType != null and dateType == 'day'">
- ,DATE_FORMAT(max(ad.ALARM_START_TIME),'%Y-%m-%d') as "dateStringLabel"
- </if>
- <if test="dateType != null and dateType == 'hour'">
- ,DATE_FORMAT(max(ad.ALARM_START_TIME),'%Y-%m-%d %H:00') as "dateStringLabel"
- </if>
- ,ad.PARENT_SCENE_NAME as "deviceName"
- ,'报警次数' as "attributeName"
- ,count(1) as "monitorData"
- ,count(1) as "data"
- from sms_alarm_details ad
- left join sms_device d on ad.DEVICE_ID=d.ID
- where ad.ALARM_START_TIME < #{endDate} and ad.ALARM_START_TIME >= #{beginDate} and d.ENABLE_STATE = 1 and d.`STATUS`= 1
- <if test="sceneIds != null and sceneIds.size()>0">
- and ad.parent_scene_id in
- <foreach collection="sceneIds" item="item" open="(" close=")" separator=",">
- #{item}
- </foreach>
- </if>
- <if test="tenantId != null and tenantId != '' ">
- and d.tenant_id = #{tenantId}
- </if>
- <if test="userType!=null and userType!=-999 and userType!=-9999 and programItems != null and programItems.size() > 0">
- <if test="permissonType == 5 or permissonType == 2">
- and ( d.DEPT_ORG_ID in
- <foreach collection="programItems" item="item" open="(" close=")" separator=",">
- #{item.orgId}
- </foreach>
- or
- d.COMPANY_ORG_ID in
- <foreach collection="programItems" item="item" open="(" close=")" separator=",">
- #{item.orgId}
- </foreach>
- )
- </if>
- <if test="permissonType == 4 or permissonType == 3">
- and d.DEPT_ORG_ID in
- <foreach collection="programItems" item="item" open="(" close=")" separator=",">
- #{item.orgId}
- </foreach>
- </if>
- <if test="permissonType == 1">
- and d.COMPANY_ORG_ID in
- <foreach collection="programItems" item="item" open="(" close=")" separator=",">
- #{item.orgId}
- </foreach>
- and (d.DEPT_ORG_ID is null or d.DEPT_ORG_ID =0)
- </if>
- </if>
- group by ad.PARENT_SCENE_NAME,${dateType}(ad.ALARM_START_TIME)
- )a
- order by deviceName,dateLabel
- </select>
- <!-- 根据场景类型查询设备-->
- <select id="getDeviceBySceneTypeName" resultType="com.huaxu.entity.DeviceEntity">
- select
- distinct d.DEVICE_NAME as "deviceName",d.id
- from sms_scene_type st
- left join sms_scene s on s.SCENE_TYPE_ID =st.id
- left join sms_device_scene ds on ds.SCENE_ID=s.ID
- left join sms_device d on d.id=ds.DEVICE_ID
- where st.SCENE_TYPE_NAME=#{sceneTypeName} and d.`STATUS`= 1 and d.ENABLE_STATE = 1 and s.ENABLE_STATE = 1 and ds.status=1
- <if test="tenantId != null and tenantId != '' ">
- and d.tenant_id = #{tenantId}
- </if>
- <if test="userType!=null and userType!=-999 and userType!=-9999 and programItems != null and programItems.size() > 0">
- <if test="permissonType == 5 or permissonType == 2">
- and ( d.DEPT_ORG_ID in
- <foreach collection="programItems" item="item" open="(" close=")" separator=",">
- #{item.orgId}
- </foreach>
- or
- d.COMPANY_ORG_ID in
- <foreach collection="programItems" item="item" open="(" close=")" separator=",">
- #{item.orgId}
- </foreach>
- )
- </if>
- <if test="permissonType == 4 or permissonType == 3">
- and d.DEPT_ORG_ID in
- <foreach collection="programItems" item="item" open="(" close=")" separator=",">
- #{item.orgId}
- </foreach>
- </if>
- <if test="permissonType == 1">
- and d.COMPANY_ORG_ID in
- <foreach collection="programItems" item="item" open="(" close=")" separator=",">
- #{item.orgId}
- </foreach>
- and (d.DEPT_ORG_ID is null or d.DEPT_ORG_ID =0)
- </if>
- </if>
- </select>
- <!-- 设备报表 -->
- <select id="MonitorDataDeviceReportByDay" resultMap="MonitorDataChartReportMap">
- SELECT
- d.DEVICE_NAME AS "deviceName",
- p.parm_type AS "attributeType",
- IF( p.parm_type = 13, '压力',
- IF( p.parm_type = 14, '瞬时流量',
- IF( p.parm_type = 16, '流速',
- IF( p.parm_type = 7, 'PH',
- IF( p.parm_type = 15, 'COD',
- IF( p.parm_type = 9, '浊度',
- IF( p.parm_type = 11, '余氯', '' )))))))
- AS "attributeName",
- da.unit AS "unit",
- r.`HOUR` AS "dateLabel",
- ifnull( ROUND( sum( r.AVG_VALUE ), 2 ), 0 ) AS "data",
- max( r.COLLECT_DATE ) AS "date"
- FROM sms_device_parm p
- LEFT JOIN sms_day_report r ON p.DEVICE_ID = r.DEVICE_ID AND p.ATTRIBUTE_ID = r.ATTRIBUTE_ID
- left join sms_device_attribute da ON da.id = p.ATTRIBUTE_ID
- LEFT JOIN sms_device d ON d.id = p.DEVICE_ID
- WHERE p.`STATUS`= 1 and d.ENABLE_STATE = 1 and d.`STATUS`= 1
- AND r.YEAR = #{year} and r.month=#{month} and r.day=#{day}
- <if test="searchType != null and searchType == 1">
- and p.parm_type = 13
- </if>
- <if test="searchType != null and searchType == 2">
- and p.parm_type in (14,16)
- </if>
- <if test="searchType != null and searchType == 3">
- and p.parm_type in (7,9,11,15)
- </if>
- <if test="deviceIds != null and deviceIds.size()>0">
- and d.id in
- <foreach collection="deviceIds" item="item" open="(" close=")" separator=",">
- #{item}
- </foreach>
- </if>
- <if test="tenantId != null and tenantId != '' ">
- and d.tenant_id = #{tenantId}
- </if>
- <if test="userType!=null and userType!=-999 and userType!=-9999 and programItems != null and programItems.size() > 0">
- <if test="permissonType == 5 or permissonType == 2">
- and ( d.DEPT_ORG_ID in
- <foreach collection="programItems" item="item" open="(" close=")" separator=",">
- #{item.orgId}
- </foreach>
- or
- d.COMPANY_ORG_ID in
- <foreach collection="programItems" item="item" open="(" close=")" separator=",">
- #{item.orgId}
- </foreach>
- )
- </if>
- <if test="permissonType == 4 or permissonType == 3">
- and d.DEPT_ORG_ID in
- <foreach collection="programItems" item="item" open="(" close=")" separator=",">
- #{item.orgId}
- </foreach>
- </if>
- <if test="permissonType == 1">
- and d.COMPANY_ORG_ID in
- <foreach collection="programItems" item="item" open="(" close=")" separator=",">
- #{item.orgId}
- </foreach>
- and (d.DEPT_ORG_ID is null or d.DEPT_ORG_ID =0)
- </if>
- </if>
- GROUP BY d.DEVICE_NAME, p.parm_type,da.unit,r.HOUR
- order by r.`hour` asc
- </select>
- <select id="MonitorDataDeviceReportByMonth" resultMap="MonitorDataChartReportMap">
- SELECT
- d.DEVICE_NAME AS "deviceName",
- p.parm_type AS "attributeType",
- IF( p.parm_type = 13, '压力',
- IF( p.parm_type = 14, '瞬时流量',
- IF( p.parm_type = 16, '流速',
- IF( p.parm_type = 7, 'PH',
- IF( p.parm_type = 15, 'COD',
- IF( p.parm_type = 9, '浊度',
- IF( p.parm_type = 11, '余氯', '' )))))))
- AS "attributeName",
- da.unit AS "unit",
- r.`day` AS "dateLabel",
- ifnull( ROUND( sum( r.AVG_VALUE ), 2 ), 0 ) AS "data",
- max( r.COLLECT_DATE ) AS "date"
- FROM sms_device_parm p
- LEFT JOIN sms_month_report r ON p.DEVICE_ID = r.DEVICE_ID AND p.ATTRIBUTE_ID = r.ATTRIBUTE_ID
- left join sms_device_attribute da ON da.id = p.ATTRIBUTE_ID
- LEFT JOIN sms_device d ON d.id = p.DEVICE_ID
- WHERE p.`STATUS`= 1 and d.ENABLE_STATE = 1
- AND r.YEAR = #{year} and r.month=#{month}
- <if test="searchType != null and searchType == 1">
- and p.parm_type = 13
- </if>
- <if test="searchType != null and searchType == 2">
- and p.parm_type in (14,16)
- </if>
- <if test="searchType != null and searchType == 3">
- and p.parm_type in (7,9,11,15)
- </if>
- <if test="deviceIds != null and deviceIds.size()>0">
- and d.id in
- <foreach collection="deviceIds" item="item" open="(" close=")" separator=",">
- #{item}
- </foreach>
- </if>
- <if test="tenantId != null and tenantId != '' ">
- and d.tenant_id = #{tenantId}
- </if>
- <if test="userType!=null and userType!=-999 and userType!=-9999 and programItems != null and programItems.size() > 0">
- <if test="permissonType == 5 or permissonType == 2">
- and ( d.DEPT_ORG_ID in
- <foreach collection="programItems" item="item" open="(" close=")" separator=",">
- #{item.orgId}
- </foreach>
- or
- d.COMPANY_ORG_ID in
- <foreach collection="programItems" item="item" open="(" close=")" separator=",">
- #{item.orgId}
- </foreach>
- )
- </if>
- <if test="permissonType == 4 or permissonType == 3">
- and d.DEPT_ORG_ID in
- <foreach collection="programItems" item="item" open="(" close=")" separator=",">
- #{item.orgId}
- </foreach>
- </if>
- <if test="permissonType == 1">
- and d.COMPANY_ORG_ID in
- <foreach collection="programItems" item="item" open="(" close=")" separator=",">
- #{item.orgId}
- </foreach>
- and (d.DEPT_ORG_ID is null or d.DEPT_ORG_ID =0)
- </if>
- </if>
- GROUP BY d.DEVICE_NAME, p.parm_type,da.unit,r.day
- order by r.day asc
- </select>
- <select id="MonitorDataDeviceReportByYear" resultMap="MonitorDataChartReportMap">
- SELECT
- d.DEVICE_NAME AS "deviceName",
- p.parm_type AS "attributeType",
- IF( p.parm_type = 13, '压力',
- IF( p.parm_type = 14, '瞬时流量',
- IF( p.parm_type = 16, '流速',
- IF( p.parm_type = 7, 'PH',
- IF( p.parm_type = 15, 'COD',
- IF( p.parm_type = 9, '浊度',
- IF( p.parm_type = 11, '余氯', '' )))))))
- AS "attributeName",
- da.unit AS "unit",
- r.month AS "dateLabel",
- ifnull( ROUND( sum( r.AVG_VALUE ), 2 ), 0 ) AS "data",
- max( r.COLLECT_DATE ) AS "date"
- FROM sms_device_parm p
- LEFT JOIN sms_year_report r ON p.DEVICE_ID = r.DEVICE_ID AND p.ATTRIBUTE_ID = r.ATTRIBUTE_ID
- left join sms_device_attribute da ON da.id = p.ATTRIBUTE_ID
- LEFT JOIN sms_device d ON d.id = p.DEVICE_ID
- WHERE p.`STATUS`= 1 and d.ENABLE_STATE = 1
- AND r.YEAR = #{year}
- <if test="searchType != null and searchType == 1">
- and p.parm_type = 13
- </if>
- <if test="searchType != null and searchType == 2">
- and p.parm_type in (14,16)
- </if>
- <if test="searchType != null and searchType == 3">
- and p.parm_type in (7,9,11,15)
- </if>
- <if test="deviceIds != null and deviceIds.size()>0">
- and d.id in
- <foreach collection="deviceIds" item="item" open="(" close=")" separator=",">
- #{item}
- </foreach>
- </if>
- <if test="tenantId != null and tenantId != '' ">
- and d.tenant_id = #{tenantId}
- </if>
- <if test="userType!=null and userType!=-999 and userType!=-9999 and programItems != null and programItems.size() > 0">
- <if test="permissonType == 5 or permissonType == 2">
- and ( d.DEPT_ORG_ID in
- <foreach collection="programItems" item="item" open="(" close=")" separator=",">
- #{item.orgId}
- </foreach>
- or
- d.COMPANY_ORG_ID in
- <foreach collection="programItems" item="item" open="(" close=")" separator=",">
- #{item.orgId}
- </foreach>
- )
- </if>
- <if test="permissonType == 4 or permissonType == 3">
- and d.DEPT_ORG_ID in
- <foreach collection="programItems" item="item" open="(" close=")" separator=",">
- #{item.orgId}
- </foreach>
- </if>
- <if test="permissonType == 1">
- and d.COMPANY_ORG_ID in
- <foreach collection="programItems" item="item" open="(" close=")" separator=",">
- #{item.orgId}
- </foreach>
- and (d.DEPT_ORG_ID is null or d.DEPT_ORG_ID =0)
- </if>
- </if>
- GROUP BY d.DEVICE_NAME, p.parm_type,da.unit,r.month
- order by r.`month` asc
- </select>
- <!-- 概览页 -->
- <select id="selectDeviceCode" resultType="java.lang.String">
- select DEVICE_CODE from sms_device d
- where STATUS =1 and ENABLE_STATE =1 and TENANT_ID=#{tenantId}
- <if test="userType!=null and userType!=-999 and userType!=-9999 and programItems != null and programItems.size() > 0">
- <if test="permissonType == 5 or permissonType == 2">
- and ( d.DEPT_ORG_ID in
- <foreach collection="programItems" item="item" open="(" close=")" separator=",">
- #{item.orgId}
- </foreach>
- or
- d.COMPANY_ORG_ID in
- <foreach collection="programItems" item="item" open="(" close=")" separator=",">
- #{item.orgId}
- </foreach>
- )
- </if>
- <if test="permissonType == 4 or permissonType == 3">
- and d.DEPT_ORG_ID in
- <foreach collection="programItems" item="item" open="(" close=")" separator=",">
- #{item.orgId}
- </foreach>
- </if>
- <if test="permissonType == 1">
- and d.COMPANY_ORG_ID in
- <foreach collection="programItems" item="item" open="(" close=")" separator=",">
- #{item.orgId}
- </foreach>
- and (d.DEPT_ORG_ID is null or d.DEPT_ORG_ID =0)
- </if>
- </if>
- </select>
- <select id="selectDeviceCodeByConditions" resultType="java.lang.String">
- select distinct d.DEVICE_CODE
- FROM sms_scene_type st
- LEFT JOIN sms_scene s ON s.SCENE_TYPE_ID = st.ID
- LEFT JOIN sms_device_scene ds ON ds.PARENT_SCENE_ID = s.ID
- LEFT JOIN sms_device d ON d.id = ds.DEVICE_ID
- WHERE st.`STATUS` = 1 AND s.`STATUS` = 1 AND ds.`STATUS` = 1 AND d.`STATUS` = 1
- <if test="companyOrgId != null">
- and d.COMPANY_ORG_ID =#{companyOrgId}
- </if>
- <if test="sceneId != null">
- and s.id =#{sceneId}
- </if>
- <if test="sceneTypeName != null and sceneTypeName != ''">
- AND st.SCENE_TYPE_NAME = #{sceneTypeName}
- </if>
- and s.TENANT_ID=#{tenantId}
- <if test="userType!=null and userType!=-999 and userType!=-9999 and programItems != null and programItems.size() > 0">
- <if test="permissonType == 5 or permissonType == 2">
- and ( d.DEPT_ORG_ID in
- <foreach collection="programItems" item="item" open="(" close=")" separator=",">
- #{item.orgId}
- </foreach>
- or
- d.COMPANY_ORG_ID in
- <foreach collection="programItems" item="item" open="(" close=")" separator=",">
- #{item.orgId}
- </foreach>
- )
- </if>
- <if test="permissonType == 4 or permissonType == 3">
- and d.DEPT_ORG_ID in
- <foreach collection="programItems" item="item" open="(" close=")" separator=",">
- #{item.orgId}
- </foreach>
- </if>
- <if test="permissonType == 1">
- and d.COMPANY_ORG_ID in
- <foreach collection="programItems" item="item" open="(" close=")" separator=",">
- #{item.orgId}
- </foreach>
- and (d.DEPT_ORG_ID is null or d.DEPT_ORG_ID =0)
- </if>
- </if>
- </select>
- <select id="getDeviceWaterFor30Day" resultType="com.huaxu.dto.generalView.DeviceWaterSupply">
- select
- r.year,r.month,r.day,
- sum(r.SUM_VALUE) as "amount"
- from sms_scene_type st
- left join sms_scene s on s.SCENE_TYPE_ID =st.id
- left join sms_device_parm dp on s.id=dp.PARENT_SCENE_ID
- left join sms_month_report r on r.DEVICE_ID= dp.DEVICE_ID and r.ATTRIBUTE_ID = dp.ATTRIBUTE_ID
- where dp.`STATUS`=1 and st.SCENE_TYPE_NAME = '水厂' and s.ENABLE_STATE = 1
- and dp.PARM_TYPE = 3 and dp.TENANT_ID=#{tenantId}
- and r.COLLECT_DATE >= DATE_SUB(CURDATE(),INTERVAL 29 day)
- <if test="userType!=null and userType!=-999 and userType!=-9999 and programItems != null and programItems.size() > 0">
- <if test="permissonType == 5 or permissonType == 2">
- and ( s.DEPT_ORG_ID in
- <foreach collection="programItems" item="item" open="(" close=")" separator=",">
- #{item.orgId}
- </foreach>
- or
- s.COMPANY_ORG_ID in
- <foreach collection="programItems" item="item" open="(" close=")" separator=",">
- #{item.orgId}
- </foreach>
- )
- </if>
- <if test="permissonType == 4 or permissonType == 3">
- and s.DEPT_ORG_ID in
- <foreach collection="programItems" item="item" open="(" close=")" separator=",">
- #{item.orgId}
- </foreach>
- </if>
- <if test="permissonType == 1">
- and s.COMPANY_ORG_ID in
- <foreach collection="programItems" item="item" open="(" close=")" separator=",">
- #{item.orgId}
- </foreach>
- and (s.DEPT_ORG_ID is null or s.DEPT_ORG_ID =0)
- </if>
- </if>
- group by r.year,r.month,r.day
- order by r.year desc,r.month desc,r.day desc
- </select>
- <select id="getDeviceWaterDetailForNow" resultType="com.huaxu.dto.generalView.DeviceWaterDetail">
- select
- s.SCENE_NAME as "sceneName"
- ,dp.DEVICE_ID as "deviceId"
- ,dp.ATTRIBUTE_ID as "attributeId"
- ,dp.PARM_TYPE as "parmType"
- from sms_scene_type st
- left join sms_scene s on s.SCENE_TYPE_ID =st.id
- left join sms_device_parm dp on s.id=dp.PARENT_SCENE_ID
- where dp.`STATUS`=1 and st.SCENE_TYPE_NAME = #{sceneTypeName} and s.ENABLE_STATE = 1 and s.PARENT_SCENE_ID = 0
- and dp.PARM_TYPE =#{parmType} and dp.TENANT_ID=#{tenantId}
- <if test="userType!=null and userType!=-999 and userType!=-9999 and programItems != null and programItems.size() > 0">
- <if test="permissonType == 5 or permissonType == 2">
- and ( s.DEPT_ORG_ID in
- <foreach collection="programItems" item="item" open="(" close=")" separator=",">
- #{item.orgId}
- </foreach>
- or
- s.COMPANY_ORG_ID in
- <foreach collection="programItems" item="item" open="(" close=")" separator=",">
- #{item.orgId}
- </foreach>
- )
- </if>
- <if test="permissonType == 4 or permissonType == 3">
- and s.DEPT_ORG_ID in
- <foreach collection="programItems" item="item" open="(" close=")" separator=",">
- #{item.orgId}
- </foreach>
- </if>
- <if test="permissonType == 1">
- and s.COMPANY_ORG_ID in
- <foreach collection="programItems" item="item" open="(" close=")" separator=",">
- #{item.orgId}
- </foreach>
- and (s.DEPT_ORG_ID is null or s.DEPT_ORG_ID =0)
- </if>
- </if>
- </select>
- <select id="getDeviceWaterDetailForDay" resultType="com.huaxu.dto.generalView.DeviceWaterDetail">
- select
- s.SCENE_NAME as "sceneName"
- ,dp.DEVICE_ID as "deviceId"
- ,dp.ATTRIBUTE_ID as "attributeId"
- ,dp.PARM_TYPE as "parmType"
- ,r.LATEST_VALUE as "latestValue"
- from sms_scene_type st
- left join sms_scene s on s.SCENE_TYPE_ID =st.id
- left join sms_device_parm dp on s.id=dp.PARENT_SCENE_ID
- left join sms_month_report r on r.DEVICE_ID= dp.DEVICE_ID and r.ATTRIBUTE_ID = dp.ATTRIBUTE_ID and r.year = #{year} and r.month= #{month} and r.day = #{day}
- where dp.`STATUS`=1 and st.SCENE_TYPE_NAME = #{sceneTypeName} and s.ENABLE_STATE = 1
- <if test="companyOrgId != null">
- and s.COMPANY_ORG_ID = #{companyOrgId}
- </if>
- <if test="sceneId != null">
- and s.id = #{sceneId}
- </if>
- and dp.PARM_TYPE =#{parmType} and dp.TENANT_ID=#{tenantId}
- <if test="userType!=null and userType!=-999 and userType!=-9999 and programItems != null and programItems.size() > 0">
- <if test="permissonType == 5 or permissonType == 2">
- and ( s.DEPT_ORG_ID in
- <foreach collection="programItems" item="item" open="(" close=")" separator=",">
- #{item.orgId}
- </foreach>
- or
- s.COMPANY_ORG_ID in
- <foreach collection="programItems" item="item" open="(" close=")" separator=",">
- #{item.orgId}
- </foreach>
- )
- </if>
- <if test="permissonType == 4 or permissonType == 3">
- and s.DEPT_ORG_ID in
- <foreach collection="programItems" item="item" open="(" close=")" separator=",">
- #{item.orgId}
- </foreach>
- </if>
- <if test="permissonType == 1">
- and s.COMPANY_ORG_ID in
- <foreach collection="programItems" item="item" open="(" close=")" separator=",">
- #{item.orgId}
- </foreach>
- and (s.DEPT_ORG_ID is null or s.DEPT_ORG_ID =0)
- </if>
- </if>
- </select>
- <select id="getDeviceWaterDetailForMonth" resultType="java.math.BigDecimal">
- select
- sum(ifnull(r.SUM_VALUE,0)) as "amount"
- from sms_scene_type st
- left join sms_scene s on s.SCENE_TYPE_ID =st.id
- left join sms_device_parm dp on s.id=dp.PARENT_SCENE_ID
- left join sms_month_report r on r.DEVICE_ID= dp.DEVICE_ID and r.ATTRIBUTE_ID = dp.ATTRIBUTE_ID and r.year = #{year} and r.month= #{month}
- where dp.`STATUS`=1 and st.SCENE_TYPE_NAME = #{sceneTypeName} and s.ENABLE_STATE = 1
- <if test="companyOrgId != null">
- and s.COMPANY_ORG_ID = #{companyOrgId}
- </if>
- <if test="sceneId != null">
- and s.id = #{sceneId}
- </if>
- and dp.PARM_TYPE =#{parmType} and dp.TENANT_ID=#{tenantId}
- <if test="userType!=null and userType!=-999 and userType!=-9999 and programItems != null and programItems.size() > 0">
- <if test="permissonType == 5 or permissonType == 2">
- and ( s.DEPT_ORG_ID in
- <foreach collection="programItems" item="item" open="(" close=")" separator=",">
- #{item.orgId}
- </foreach>
- or
- s.COMPANY_ORG_ID in
- <foreach collection="programItems" item="item" open="(" close=")" separator=",">
- #{item.orgId}
- </foreach>
- )
- </if>
- <if test="permissonType == 4 or permissonType == 3">
- and s.DEPT_ORG_ID in
- <foreach collection="programItems" item="item" open="(" close=")" separator=",">
- #{item.orgId}
- </foreach>
- </if>
- <if test="permissonType == 1">
- and s.COMPANY_ORG_ID in
- <foreach collection="programItems" item="item" open="(" close=")" separator=",">
- #{item.orgId}
- </foreach>
- and (s.DEPT_ORG_ID is null or s.DEPT_ORG_ID =0)
- </if>
- </if>
- </select>
- <select id="getDeviceWaterDetailForYear" resultType="java.math.BigDecimal">
- select
- sum(ifnull(r.SUM_VALUE,0)) as "amount"
- from sms_scene_type st
- left join sms_scene s on s.SCENE_TYPE_ID =st.id
- left join sms_device_parm dp on s.id=dp.PARENT_SCENE_ID
- left join sms_year_report r on r.DEVICE_ID= dp.DEVICE_ID and r.ATTRIBUTE_ID = dp.ATTRIBUTE_ID and r.year = #{year}
- where dp.`STATUS`=1 and st.SCENE_TYPE_NAME = #{sceneTypeName} and s.ENABLE_STATE = 1
- <if test="companyOrgId != null">
- and s.COMPANY_ORG_ID = #{companyOrgId}
- </if>
- <if test="sceneId != null">
- and s.id = #{sceneId}
- </if>
- and dp.PARM_TYPE =#{parmType} and dp.TENANT_ID=#{tenantId}
- <if test="userType!=null and userType!=-999 and userType!=-9999 and programItems != null and programItems.size() > 0">
- <if test="permissonType == 5 or permissonType == 2">
- and ( s.DEPT_ORG_ID in
- <foreach collection="programItems" item="item" open="(" close=")" separator=",">
- #{item.orgId}
- </foreach>
- or
- s.COMPANY_ORG_ID in
- <foreach collection="programItems" item="item" open="(" close=")" separator=",">
- #{item.orgId}
- </foreach>
- )
- </if>
- <if test="permissonType == 4 or permissonType == 3">
- and s.DEPT_ORG_ID in
- <foreach collection="programItems" item="item" open="(" close=")" separator=",">
- #{item.orgId}
- </foreach>
- </if>
- <if test="permissonType == 1">
- and s.COMPANY_ORG_ID in
- <foreach collection="programItems" item="item" open="(" close=")" separator=",">
- #{item.orgId}
- </foreach>
- and (s.DEPT_ORG_ID is null or s.DEPT_ORG_ID =0)
- </if>
- </if>
- </select>
- <select id="getAlarmInfoForScene" resultType="com.huaxu.dto.generalView.SceneAlarm">
- select
- s.SCENE_NAME as "sceneName",count(ad.id) as "alarmNumber"
- from sms_scene_type st
- left join sms_scene s on s.SCENE_TYPE_ID =st.id and s.PARENT_SCENE_ID = 0
- left join sms_alarm_details ad on ad.STATE = 1 and ad.PARENT_SCENE_ID=s.id
- where s.`STATUS` = 1 and s.ENABLE_STATE = 1 and (st.SCENE_TYPE_NAME = '水厂' or st.SCENE_TYPE_NAME ='水源') and s.TENANT_ID=#{tenantId}
- <if test="userType!=null and userType!=-999 and userType!=-9999 and programItems != null and programItems.size() > 0">
- <if test="permissonType == 5 or permissonType == 2">
- and ( s.DEPT_ORG_ID in
- <foreach collection="programItems" item="item" open="(" close=")" separator=",">
- #{item.orgId}
- </foreach>
- or
- s.COMPANY_ORG_ID in
- <foreach collection="programItems" item="item" open="(" close=")" separator=",">
- #{item.orgId}
- </foreach>
- )
- </if>
- <if test="permissonType == 4 or permissonType == 3">
- and s.DEPT_ORG_ID in
- <foreach collection="programItems" item="item" open="(" close=")" separator=",">
- #{item.orgId}
- </foreach>
- </if>
- <if test="permissonType == 1">
- and s.COMPANY_ORG_ID in
- <foreach collection="programItems" item="item" open="(" close=")" separator=",">
- #{item.orgId}
- </foreach>
- and (s.DEPT_ORG_ID is null or s.DEPT_ORG_ID =0)
- </if>
- </if>
- group by s.SCENE_NAME
- having count(ad.id) >0
- </select>
- <select id="getQualificationForScene" resultType="com.huaxu.dto.generalView.SceneNormalRate">
- select
- sum(if(alarmNumber > 0 ,1,0)) as "abnormal",
- sum(if(alarmNumber > 0 ,0,1)) as "normal",
- ROUND(sum(if(alarmNumber > 0 ,0,1))/if(count(1) != 0, count(1),1) * 100,2) as "normalRate"
- from (
- select
- s.SCENE_NAME as "sceneName"
- <if test="parmType != null and parmType == -1">
- ,sum( if(dp.PARM_TYPE IN ( 15, 8, 10, 11, 18, 19 ) and ad.id is not null,1,0) ) AS "alarmNumber"
- </if>
- <if test="parmType != null and parmType != -1">
- ,sum( if(dp.PARM_TYPE = #{parmType} and ad.id is not null,1,0) ) AS "alarmNumber"
- </if>
- from sms_scene_type st
- left join sms_scene s on s.SCENE_TYPE_ID =st.id and PARENT_SCENE_ID ='0'
- left join sms_device_parm dp on dp.PARENT_SCENE_ID =s.ID
- left join sms_alarm_details ad on ad.STATE = 1 and ad.PARENT_SCENE_ID=dp.PARENT_SCENE_ID and ad.DEVICE_ID =dp.DEVICE_ID and ad.ATTRIBUTE_ID =dp.ATTRIBUTE_ID
- where s.`STATUS`=1 and s.ENABLE_STATE = 1 and st.SCENE_TYPE_NAME = '水厂' and s.TENANT_ID =#{tenantId} and dp.`STATUS` = 1
- <if test="userType!=null and userType!=-999 and userType!=-9999 and programItems != null and programItems.size() > 0">
- <if test="permissonType == 5 or permissonType == 2">
- and ( s.DEPT_ORG_ID in
- <foreach collection="programItems" item="item" open="(" close=")" separator=",">
- #{item.orgId}
- </foreach>
- or
- s.COMPANY_ORG_ID in
- <foreach collection="programItems" item="item" open="(" close=")" separator=",">
- #{item.orgId}
- </foreach>
- )
- </if>
- <if test="permissonType == 4 or permissonType == 3">
- and s.DEPT_ORG_ID in
- <foreach collection="programItems" item="item" open="(" close=")" separator=",">
- #{item.orgId}
- </foreach>
- </if>
- <if test="permissonType == 1">
- and s.COMPANY_ORG_ID in
- <foreach collection="programItems" item="item" open="(" close=")" separator=",">
- #{item.orgId}
- </foreach>
- and (s.DEPT_ORG_ID is null or s.DEPT_ORG_ID =0)
- </if>
- </if>
- group by s.SCENE_NAME
- ) a
- </select>
- <select id="getWaterSupplyData" resultType="com.huaxu.dto.generalView.WaterSupplyData">
- select
- r.year
- ,r.month
- ,r.day
- ,dp.PARM_TYPE as "parmType"
- ,sum(r.SUM_VALUE) as "amount"
- ,da.UNIT as "unit"
- from sms_scene_type st
- left join sms_scene s on s.SCENE_TYPE_ID =st.id
- left join sms_device_parm dp on s.id=dp.PARENT_SCENE_ID
- left join sms_device_attribute da on dp.ATTRIBUTE_ID =da.ID
- left join sms_month_report r on r.DEVICE_ID =dp.DEVICE_ID and r.ATTRIBUTE_ID = dp.ATTRIBUTE_ID
- where dp.`STATUS`=1 and st.SCENE_TYPE_NAME = #{sceneTypeName} and s.ENABLE_STATE = 1
- and r.COLLECT_DATE >= DATE_SUB(CURDATE(),INTERVAL 7 day)
- and dp.PARM_TYPE in (3,5,6) and dp.TENANT_ID=#{tenantId}
- <if test="userType!=null and userType!=-999 and userType!=-9999 and programItems != null and programItems.size() > 0">
- <if test="permissonType == 5 or permissonType == 2">
- and ( s.DEPT_ORG_ID in
- <foreach collection="programItems" item="item" open="(" close=")" separator=",">
- #{item.orgId}
- </foreach>
- or
- s.COMPANY_ORG_ID in
- <foreach collection="programItems" item="item" open="(" close=")" separator=",">
- #{item.orgId}
- </foreach>
- )
- </if>
- <if test="permissonType == 4 or permissonType == 3">
- and s.DEPT_ORG_ID in
- <foreach collection="programItems" item="item" open="(" close=")" separator=",">
- #{item.orgId}
- </foreach>
- </if>
- <if test="permissonType == 1">
- and s.COMPANY_ORG_ID in
- <foreach collection="programItems" item="item" open="(" close=")" separator=",">
- #{item.orgId}
- </foreach>
- and (s.DEPT_ORG_ID is null or s.DEPT_ORG_ID =0)
- </if>
- </if>
- group by r.year,r.month,r.day,dp.PARM_TYPE,da.UNIT
- </select>
- <select id="getWaterSupplyDataByMonth" resultType="com.huaxu.dto.generalView.WaterSupplyData">
- select
- r.year
- ,r.month
- ,dp.PARM_TYPE as "parmType"
- ,sum(r.SUM_VALUE) as "amount"
- from sms_scene_type st
- left join sms_scene s on s.SCENE_TYPE_ID =st.id
- left join sms_device_parm dp on s.id=dp.PARENT_SCENE_ID
- left join sms_device_attribute da on dp.ATTRIBUTE_ID =da.ID
- left join sms_year_report r on r.DEVICE_ID =dp.DEVICE_ID and r.ATTRIBUTE_ID = dp.ATTRIBUTE_ID
- where dp.`STATUS`=1 and st.SCENE_TYPE_NAME = #{sceneTypeName} and s.ENABLE_STATE = 1 and st.`STATUS`=1 and s.`STATUS`=1
- and r.COLLECT_DATE >= DATE_SUB(CURDATE(),INTERVAL 6 month)
- and dp.PARM_TYPE in (3,5) and dp.TENANT_ID=#{tenantId}
- <if test="companyOrgId != null ">and s.COMPANY_ORG_ID=#{companyOrgId}</if>
- <if test="userType!=null and userType!=-999 and userType!=-9999 and programItems != null and programItems.size() > 0">
- <if test="permissonType == 5 or permissonType == 2">
- and ( s.DEPT_ORG_ID in
- <foreach collection="programItems" item="item" open="(" close=")" separator=",">
- #{item.orgId}
- </foreach>
- or
- s.COMPANY_ORG_ID in
- <foreach collection="programItems" item="item" open="(" close=")" separator=",">
- #{item.orgId}
- </foreach>
- )
- </if>
- <if test="permissonType == 4 or permissonType == 3">
- and s.DEPT_ORG_ID in
- <foreach collection="programItems" item="item" open="(" close=")" separator=",">
- #{item.orgId}
- </foreach>
- </if>
- <if test="permissonType == 1">
- and s.COMPANY_ORG_ID in
- <foreach collection="programItems" item="item" open="(" close=")" separator=",">
- #{item.orgId}
- </foreach>
- and (s.DEPT_ORG_ID is null or s.DEPT_ORG_ID =0)
- </if>
- </if>
- group by r.year,r.month,dp.PARM_TYPE
- </select>
- <select id="getWaterSupplyDataByMonthForCurrentMonth" resultType="com.huaxu.dto.generalView.WaterSupplyData">
- select
- r.year
- ,r.month
- ,dp.PARM_TYPE as "parmType"
- ,sum(r.SUM_VALUE) as "amount"
- from sms_scene_type st
- left join sms_scene s on s.SCENE_TYPE_ID =st.id
- left join sms_device_parm dp on s.id=dp.PARENT_SCENE_ID
- left join sms_device_attribute da on dp.ATTRIBUTE_ID =da.ID
- left join sms_month_report r on r.DEVICE_ID =dp.DEVICE_ID and r.ATTRIBUTE_ID = dp.ATTRIBUTE_ID
- where dp.`STATUS`=1
- <if test="sceneTypeName != null ">
- and st.SCENE_TYPE_NAME = #{sceneTypeName}
- </if>
- <if test="sceneTypeName == null ">
- and st.SCENE_TYPE_NAME in ('水源','水厂','泵站')
- </if>
- and s.ENABLE_STATE = 1 and st.`STATUS`=1 and s.`STATUS`=1
- and DATE_FORMAT(r.COLLECT_DATE,'%Y%m' ) = DATE_FORMAT(CURDATE( ) , '%Y%m' )
- and dp.PARM_TYPE in (3,4,5) and dp.TENANT_ID=#{tenantId}
- <if test="companyOrgId != null ">and s.COMPANY_ORG_ID=#{companyOrgId}</if>
- <if test="userType!=null and userType!=-999 and userType!=-9999 and programItems != null and programItems.size() > 0">
- <if test="permissonType == 5 or permissonType == 2">
- and ( s.DEPT_ORG_ID in
- <foreach collection="programItems" item="item" open="(" close=")" separator=",">
- #{item.orgId}
- </foreach>
- or
- s.COMPANY_ORG_ID in
- <foreach collection="programItems" item="item" open="(" close=")" separator=",">
- #{item.orgId}
- </foreach>
- )
- </if>
- <if test="permissonType == 4 or permissonType == 3">
- and s.DEPT_ORG_ID in
- <foreach collection="programItems" item="item" open="(" close=")" separator=",">
- #{item.orgId}
- </foreach>
- </if>
- <if test="permissonType == 1">
- and s.COMPANY_ORG_ID in
- <foreach collection="programItems" item="item" open="(" close=")" separator=",">
- #{item.orgId}
- </foreach>
- and (s.DEPT_ORG_ID is null or s.DEPT_ORG_ID =0)
- </if>
- </if>
- group by r.year,r.month,dp.PARM_TYPE
- </select>
- <select id="getUseAmount" resultType="java.math.BigDecimal">
- select sum(ifnull(a.WATER_USAGE,0)) as "amount"
- from sms_month_sellwater a
- <if test="companyOrgId != null">
- and a.COMPANY_ORG_ID = #{companyOrgId}
- </if>
- and a.TENANT_ID=#{tenantId}
- <if test="searchType ==1">
- date_format(a.COLLECT_DATE, '%Y-%m') = DATE_FORMAT(now(), '%Y-%m')
- </if>
- <if test="searchType ==2">
- date_format(a.COLLECT_DATE, '%Y') = DATE_FORMAT(now(), '%Y')
- </if>
- <if test="userType!=null and userType!=-999 and userType!=-9999 and programItems != null and programItems.size() > 0">
- <if test="permissonType == 5 or permissonType == 2">
- and a.COMPANY_ORG_ID in
- <foreach collection="programItems" item="item" open="(" close=")" separator=",">
- #{item.orgId}
- </foreach>
- </if>
- <if test="permissonType == 4 or permissonType == 3">
- and a.COMPANY_ORG_ID in
- <foreach collection="programItems" item="item" open="(" close=")" separator=",">
- #{item.orgId}
- </foreach>
- </if>
- <if test="permissonType == 1">
- and a.COMPANY_ORG_ID in
- <foreach collection="programItems" item="item" open="(" close=")" separator=",">
- #{item.orgId}
- </foreach>
- </if>
- </if>
- </select>
- </mapper>
|