123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452 |
- <?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>
|