From 31d3591b34d4f26ad2ab207ca3044048d9adb9df Mon Sep 17 00:00:00 2001 From: fuliqi <fuliqi@qq.com> Date: 星期三, 21 八月 2024 17:51:28 +0800 Subject: [PATCH] Merge remote-tracking branch 'origin/master' --- ycl-server/src/main/resources/mapper/zgyw/TMonitorMapper.xml | 533 ++++++++++++++++++++++++++++++++++++++++++++++++----------- 1 files changed, 432 insertions(+), 101 deletions(-) diff --git a/ycl-server/src/main/resources/mapper/zgyw/TMonitorMapper.xml b/ycl-server/src/main/resources/mapper/zgyw/TMonitorMapper.xml index 9fe7ef1..62aac3b 100644 --- a/ycl-server/src/main/resources/mapper/zgyw/TMonitorMapper.xml +++ b/ycl-server/src/main/resources/mapper/zgyw/TMonitorMapper.xml @@ -1,101 +1,157 @@ <?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"> + PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" + "http://mybatis.org/dtd/mybatis-3-mapper.dtd"> <mapper namespace="com.ycl.platform.mapper.TMonitorMapper"> <resultMap type="com.ycl.platform.domain.entity.TMonitor" id="TMonitorResult"> - <result property="id" column="id" /> - <result property="serialNumber" column="serial_number" /> - <result property="name" column="name" /> - <result property="siteType" column="site_type" /> - <result property="macAddr" column="mac_addr" /> - <result property="ip" column="ip" /> - <result property="cameraFunType" column="camera_fun_type" /> - <result property="longitude" column="longitude" /> - <result property="latitude" column="latitude" /> - <result property="cameraCaptureArea" column="camera_capture_area" /> - <result property="onState" column="on_state" /> - <result property="civilCode" column="civil_code" /> - <result property="integratedDevice" column="integrated_device" /> - <result property="cameraBrand" column="camera_brand" /> - <result property="address" column="address" /> - <result property="netWorking" column="net_working" /> - <result property="publicSecurity" column="public_security" /> - <result property="installedTime" column="installed_time" /> - <result property="managementUnit" column="management_unit" /> - <result property="muContactInfo" column="mu_contact_info" /> - <result property="storageDays" column="storage_days" /> - <result property="monitorAzimuth" column="monitor_azimuth" /> - <result property="scenePhotoAddr" column="scene_photo_addr" /> - <result property="model" column="model" /> - <result property="siteVulgo" column="site_vulgo" /> - <result property="cameraType" column="camera_type" /> - <result property="cameraLightType" column="camera_light_type" /> - <result property="encodedFormat" column="encoded_format" /> - <result property="cameraDept" column="camera_dept" /> - <result property="hybm" column="hybm" /> - <result property="lxbm" column="lxbm" /> - <result property="reason" column="reason" /> - <result property="defaultOrder" column="default_order" /> - <result property="recovery" column="recovery" /> - <result property="recoveryTime" column="recovery_time" /> - <result property="deptId" column="dept_id" /> + <result property="id" column="id"/> + <result property="serialNumber" column="serial_number"/> + <result property="name" column="name"/> + <result property="siteType" column="site_type"/> + <result property="macAddr" column="mac_addr"/> + <result property="ip" column="ip"/> + <result property="cameraFunType" column="camera_fun_type"/> + <result property="longitude" column="longitude"/> + <result property="latitude" column="latitude"/> + <result property="cameraCaptureArea" column="camera_capture_area"/> + <result property="onState" column="on_state"/> + <result property="civilCode" column="civil_code"/> + <result property="integratedDevice" column="integrated_device"/> + <result property="cameraBrand" column="camera_brand"/> + <result property="address" column="address"/> + <result property="netWorking" column="net_working"/> + <result property="publicSecurity" column="public_security"/> + <result property="installedTime" column="installed_time"/> + <result property="managementUnit" column="management_unit"/> + <result property="muContactInfo" column="mu_contact_info"/> + <result property="storageDays" column="storage_days"/> + <result property="monitorAzimuth" column="monitor_azimuth"/> + <result property="scenePhotoAddr" column="scene_photo_addr"/> + <result property="model" column="model"/> + <result property="siteVulgo" column="site_vulgo"/> + <result property="cameraType" column="camera_type"/> + <result property="cameraLightType" column="camera_light_type"/> + <result property="encodedFormat" column="encoded_format"/> + <result property="cameraDept" column="camera_dept"/> + <result property="hybm" column="hybm"/> + <result property="lxbm" column="lxbm"/> </resultMap> <sql id="selectTMonitorVo"> - select id, serial_number, name, site_type, mac_addr, ip, camera_fun_type, longitude, latitude, camera_capture_area, on_state, civil_code, integrated_device, camera_brand, address, net_working, public_security, installed_time, management_unit, mu_contact_info, storage_days, monitor_azimuth, scene_photo_addr, model, site_vulgo, camera_type, camera_light_type, encoded_format, camera_dept, hybm, lxbm, reason, default_order,recovery,recovery_time,dept_id from t_monitor + select id, + serial_number, + name, + site_type, + mac_addr, + ip, + camera_fun_type, + longitude, + latitude, + camera_capture_area, + on_state, + civil_code, + integrated_device, + camera_brand, + address, + net_working, + public_security, + installed_time, + management_unit, + mu_contact_info, + storage_days, + monitor_azimuth, + scene_photo_addr, + model, + site_vulgo, + camera_type, + camera_light_type, + encoded_format, + camera_dept, + hybm, + lxbm + from t_monitor </sql> - <select id="selectTMonitorList" resultType="com.ycl.platform.domain.vo.TMonitorVO"> - select id, serial_number, name, site_type, mac_addr, ip, camera_fun_type, longitude, latitude, camera_capture_area, on_state, civil_code, integrated_device, camera_brand, address, net_working, public_security, installed_time, management_unit, mu_contact_info, storage_days - , monitor_azimuth, scene_photo_addr, model, site_vulgo, camera_type, camera_light_type, encoded_format, camera_dept, hybm, lxbm, reason, default_order,recovery,recovery_time,sd.dept_name from t_monitor m - left join sys_dept sd on m.dept_id = sd.dept_id - <where> - <if test="serialNumber != null and serialNumber != ''"> and serial_number = #{serialNumber}</if> - <if test="name != null and name != ''"> and name like concat('%', #{name}, '%')</if> - <if test="siteType != null "> and site_type = #{siteType}</if> - <if test="macAddr != null and macAddr != ''"> and mac_addr = #{macAddr}</if> - <if test="ip != null and ip != ''"> and ip = #{ip}</if> - <if test="cameraFunType != null and cameraFunType != ''"> and camera_fun_type = #{cameraFunType}</if> - <if test="longitude != null and longitude != ''"> and longitude = #{longitude}</if> - <if test="latitude != null and latitude != ''"> and latitude = #{latitude}</if> - <if test="cameraCaptureArea != null and cameraCaptureArea != ''"> and camera_capture_area = #{cameraCaptureArea}</if> - <if test="onState != null "> and on_state = #{onState}</if> - <if test="civilCode != null and civilCode != ''"> and civil_code = #{civilCode}</if> - <if test="integratedDevice != null "> and integrated_device = #{integratedDevice}</if> - <if test="cameraBrand != null "> and camera_brand = #{cameraBrand}</if> - <if test="address != null and address != ''"> and address like concat('%',#{address},'%') </if> - <if test="netWorking != null "> and net_working = #{netWorking}</if> - <if test="publicSecurity != null and publicSecurity != ''"> and public_security = #{publicSecurity}</if> - <if test="installedTime != null "> and installed_time = #{installedTime}</if> - <if test="managementUnit != null and managementUnit != ''"> and management_unit = #{managementUnit}</if> - <if test="muContactInfo != null and muContactInfo != ''"> and mu_contact_info = #{muContactInfo}</if> - <if test="storageDays != null "> and storage_days = #{storageDays}</if> - <if test="monitorAzimuth != null "> and monitor_azimuth = #{monitorAzimuth}</if> - <if test="scenePhotoAddr != null and scenePhotoAddr != ''"> and scene_photo_addr = #{scenePhotoAddr}</if> - <if test="model != null and model != ''"> and model = #{model}</if> - <if test="siteVulgo != null and siteVulgo != ''"> and site_vulgo = #{siteVulgo}</if> - <if test="cameraType != null "> and camera_type = #{cameraType}</if> - <if test="cameraLightType != null "> and camera_light_type = #{cameraLightType}</if> - <if test="encodedFormat != null "> and encoded_format = #{encodedFormat}</if> - <if test="cameraDept != null and cameraDept != ''"> and camera_dept = #{cameraDept}</if> - <if test="hybm != null and hybm != ''"> and hybm = #{hybm}</if> - <if test="lxbm != null "> and lxbm = #{lxbm}</if> - <if test="reason != null and reason != ''"> and reason = #{reason}</if> - <if test="defaultOrder != null "> and default_order = #{defaultOrder}</if> - <if test="recovery != null "> and recovery = #{recovery}</if> - <if test="recoveryTime != null "> and recovery_time = #{recoveryTime}</if> - <if test="deptId != null "> and dept_id = #{deptId}</if> - </where> + <select id="selectListByIds" resultType="com.ycl.platform.domain.vo.TMonitorVO"> + select m.id, m.serial_number, name, site_type, mac_addr, ip, camera_fun_type, longitude, latitude, + camera_capture_area, on_state, civil_code, integrated_device, camera_brand, address, net_working, + public_security, installed_time, management_unit, mu_contact_info, storage_days + , monitor_azimuth, scene_photo_addr, model, site_vulgo, camera_type, camera_light_type, encoded_format, + camera_dept, hybm, lxbm,d.dept_id, d.dept_name from t_monitor m + left join t_yw_point p on m.serial_number = p.serial_number + left join sys_dept d on p.dept_id = d.dept_id + where m.serial_number in + <foreach collection="list" separator="," item="id" open="(" close=")"> + #{id} + </foreach> </select> - <select id="selectTMonitorById" parameterType="Long" resultMap="TMonitorResult"> + <select id="selectTMonitorList" resultType="com.ycl.platform.domain.vo.TMonitorVO"> + select m.id, m.serial_number, name, site_type, mac_addr, ip, camera_fun_type, longitude, latitude, + camera_capture_area, on_state, civil_code, d.dept_id, d.dept_name, d.area, p.province_tag, + IF(COUNT(w.id) OVER() > 0, '鏄�', '鍚�') AS error, u.unit_name from t_monitor m + left join t_yw_point p on m.serial_number = p.serial_number and p.deleted = 0 + left join sys_dept d on p.dept_id = d.dept_id and d.del_flag = 0 + left join t_work_order w on m.serial_number = w.serial_number and w.deleted = 0 + left join t_yw_unit u on p.unit_id = u.id and u.deleted = 0 + <where> + <if test="serialNumber != null and serialNumber != ''">and m.serial_number = #{serialNumber}</if> + <if test="name != null and name != ''">and name like concat('%', #{name}, '%')</if> + <if test="siteType != null ">and site_type = #{siteType}</if> + <if test="macAddr != null and macAddr != ''">and mac_addr = #{macAddr}</if> + <if test="ip != null and ip != ''">and ip = #{ip}</if> + <if test="cameraFunType != null and cameraFunType != ''">and camera_fun_type like concat('%', + #{cameraFunType}, '%') + </if> + <if test="longitude != null and longitude != ''">and longitude = #{longitude}</if> + <if test="latitude != null and latitude != ''">and latitude = #{latitude}</if> + <if test="cameraCaptureArea != null and cameraCaptureArea != ''">and camera_capture_area = + #{cameraCaptureArea} + </if> + <if test="onState != null ">and on_state = #{onState}</if> + <if test="civilCode != null and civilCode != ''">and civil_code = #{civilCode}</if> + <if test="integratedDevice != null ">and integrated_device = #{integratedDevice}</if> + <if test="cameraBrand != null ">and camera_brand = #{cameraBrand}</if> + <if test="address != null and address != ''">and address like concat('%',#{address},'%')</if> + <if test="netWorking != null ">and net_working = #{netWorking}</if> + <if test="publicSecurity != null and publicSecurity != ''">and public_security = #{publicSecurity}</if> + <if test="installedTime != null ">and installed_time = #{installedTime}</if> + <if test="managementUnit != null and managementUnit != ''">and management_unit = #{managementUnit}</if> + <if test="muContactInfo != null and muContactInfo != ''">and mu_contact_info = #{muContactInfo}</if> + <if test="storageDays != null ">and storage_days = #{storageDays}</if> + <if test="monitorAzimuth != null ">and monitor_azimuth = #{monitorAzimuth}</if> + <if test="scenePhotoAddr != null and scenePhotoAddr != ''">and scene_photo_addr = #{scenePhotoAddr}</if> + <if test="model != null and model != ''">and model = #{model}</if> + <if test="siteVulgo != null and siteVulgo != ''">and site_vulgo = #{siteVulgo}</if> + <if test="cameraType != null ">and camera_type = #{cameraType}</if> + <if test="cameraLightType != null ">and camera_light_type = #{cameraLightType}</if> + <if test="encodedFormat != null ">and encoded_format = #{encodedFormat}</if> + <if test="cameraDept != null and cameraDept != ''">and camera_dept = #{cameraDept}</if> + <if test="hybm != null and hybm != ''">and hybm = #{hybm}</if> + <if test="lxbm != null ">and lxbm = #{lxbm}</if> + <if test="recovery != null ">and p.recovery = #{recovery}</if> + </where> + ${params.dataScope} + </select> + + <select id="selectMonitorVOList" resultType="com.ycl.platform.domain.vo.TMonitorVO"> + select m.id, m.serial_number, name, site_type, mac_addr, ip, camera_fun_type, longitude, latitude, + camera_capture_area, on_state, civil_code, integrated_device, camera_brand, address, net_working, + public_security, installed_time, management_unit, mu_contact_info, storage_days + , monitor_azimuth, scene_photo_addr, model, site_vulgo, camera_type, camera_light_type, encoded_format, + camera_dept, hybm, lxbm,d.dept_id, d.dept_name from t_monitor m + left join t_yw_point p on m.serial_number = p.serial_number + left join sys_dept d on p.dept_id = d.dept_id + </select> + + <select id="selectTMonitorById" parameterType="Long" resultType="com.ycl.platform.domain.vo.TMonitorVO"> <include refid="selectTMonitorVo"/> where id = #{id} </select> - <insert id="insertTMonitor" parameterType="com.ycl.platform.domain.entity.TMonitor" useGeneratedKeys="true" keyProperty="id"> + <insert id="insertTMonitor" parameterType="com.ycl.platform.domain.entity.TMonitor" useGeneratedKeys="true" + keyProperty="id"> insert into t_monitor <trim prefix="(" suffix=")" suffixOverrides=","> <if test="serialNumber != null and serialNumber != ''">serial_number,</if> @@ -128,12 +184,7 @@ <if test="cameraDept != null">camera_dept,</if> <if test="hybm != null">hybm,</if> <if test="lxbm != null">lxbm,</if> - <if test="reason != null">reason,</if> - <if test="defaultOrder != null">default_order,</if> - <if test="recovery != null">recovery,</if> - <if test="recoveryTime != null">recovery_time,</if> - <if test="deptId != null">dept_id,</if> - </trim> + </trim> <trim prefix="values (" suffix=")" suffixOverrides=","> <if test="serialNumber != null and serialNumber != ''">#{serialNumber},</if> <if test="name != null and name != ''">#{name},</if> @@ -165,12 +216,7 @@ <if test="cameraDept != null">#{cameraDept},</if> <if test="hybm != null">#{hybm},</if> <if test="lxbm != null">#{lxbm},</if> - <if test="reason != null">#{reason},</if> - <if test="defaultOrder != null">#{defaultOrder},</if> - <if test="recovery != null">#{recovery},</if> - <if test="recoveryTime != null">#{recoveryTime},</if> - <if test="deptId != null">#{deptId},</if> - </trim> + </trim> </insert> <update id="updateTMonitor" parameterType="com.ycl.platform.domain.entity.TMonitor"> @@ -184,7 +230,9 @@ <if test="cameraFunType != null and cameraFunType != ''">camera_fun_type = #{cameraFunType},</if> <if test="longitude != null and longitude != ''">longitude = #{longitude},</if> <if test="latitude != null and latitude != ''">latitude = #{latitude},</if> - <if test="cameraCaptureArea != null and cameraCaptureArea != ''">camera_capture_area = #{cameraCaptureArea},</if> + <if test="cameraCaptureArea != null and cameraCaptureArea != ''">camera_capture_area = + #{cameraCaptureArea}, + </if> <if test="onState != null">on_state = #{onState},</if> <if test="civilCode != null and civilCode != ''">civil_code = #{civilCode},</if> <if test="integratedDevice != null">integrated_device = #{integratedDevice},</if> @@ -206,17 +254,18 @@ <if test="cameraDept != null">camera_dept = #{cameraDept},</if> <if test="hybm != null">hybm = #{hybm},</if> <if test="lxbm != null">lxbm = #{lxbm},</if> - <if test="reason != null">reason = #{reason},</if> - <if test="defaultOrder != null">default_order = #{defaultOrder},</if> - <if test="recovery != null">recovery = #{defaultOrder},</if> - <if test="recoveryTime != null">recovery_time = #{recoveryTime},</if> - <if test="deptId != null">dept_id = #{deptId},</if> </trim> where id = #{id} </update> <delete id="deleteTMonitorById" parameterType="Long"> - delete from t_monitor where id = #{id} + delete + from t_monitor + <where> + <if test="id !=null"> + id = #{id} + </if> + </where> </delete> <delete id="deleteTMonitorByIds" parameterType="String"> @@ -225,4 +274,286 @@ #{id} </foreach> </delete> + + <select id="getVideoCount" resultType="java.util.Map"> + SELECT count(*) AS totalPosts, + IFNULL(SUM(IF(on_state = 1, 1, 0)), 0) AS totalMembers, + IFNULL(SUM(IF(on_state = 2, 1, 0)), 0) AS postsPercentage, + IFNULL(ROUND(SUM(IF(on_state = 1, 1, 0)) / count(*) * 100, 2), 0) as viewsPercentage + FROM t_monitor m + left join t_yw_point p on m.serial_number = p.serial_number + left join sys_dept d on p.dept_id = d.dept_id + <where> + camera_fun_type like concat('%', #{cameraFunType}, '%') + </where> + ${params.dataScope} + </select> + + <select id="recoveryException" resultType="java.util.Map"> + <![CDATA[ + SELECT count(*) AS totalPosts, + IFNULL(SUM(IF(on_state = 1, 1, 0)), 0) AS totalMembers, + IFNULL(SUM(IF(on_state = 2, 1, 0)), 0) AS postsPercentage, + IFNULL(ROUND(SUM(IF(on_state = 1, 1, 0)) / count(*) * 100, 2), 0) as viewsPercentage + FROM t_monitor t + LEFT JOIN t_yw_point p ON t.serial_number = p.serial_number + WHERE p.recovery = 1 + OR TIMESTAMPDIFF(DAY, p.recovery_time, NOW()) <= #{time} + ]]> + </select> + + <select id="selectRecoveryMonitor" resultType="com.ycl.platform.domain.vo.TMonitorVO"> + <![CDATA[ + SELECT t.id, + p.serial_number, + name, + site_type, + mac_addr, + ip, + camera_fun_type, + longitude, + latitude, + camera_capture_area, + on_state, + civil_code, + integrated_device, + camera_brand, + address, + net_working, + public_security, + installed_time, + management_unit, + mu_contact_info, + storage_days, + monitor_azimuth, + scene_photo_addr, + model, + site_vulgo, + camera_type, + camera_light_type, + encoded_format, + camera_dept, + hybm, + lxbm + FROM t_monitor t + LEFT JOIN t_yw_point p ON t.serial_number = p.serial_number + WHERE TIMESTAMPDIFF(DAY, p.recovery_time, NOW()) <= #{time} + ]]> + </select> + + <select id="home" resultType="java.util.Map"> + SELECT + u.unit_name AS name, + CONCAT(MONTH(w.create_time), '鏈�') AS months, + COUNT(w.id) AS num1, + COUNT(m.id) - COUNT(w.id) AS num2 + FROM + t_monitor m + LEFT JOIN t_yw_point p ON m.serial_number = p.serial_number + LEFT JOIN t_yw_unit u ON p.unit_id = u.id + LEFT JOIN t_work_order w ON w.serial_number = p.serial_number + WHERE u.id = #{unitId} AND MONTH(w.create_time) IS NOT NULL + <if test="dateRange != null and dateRange.size > 0"> + AND DATE_FORMAT(w.create_time, '%Y-%m') BETWEEN #{dateRange[0]} AND #{dateRange[1]} + </if> + GROUP BY months + ORDER BY months + </select> + + <select id="monitorTotal" resultType="com.ycl.platform.domain.vo.screen.MonitorTotalVO"> + SELECT + '瑙嗛' as type, + COUNT(p1.id) AS totalNum, + COUNT(p2.id) AS errorNum, + COUNT(p1.id) - COUNT(p2.id) AS normalNum + FROM t_monitor + LEFT JOIN t_yw_point p1 ON t_monitor.serial_number = p1.serial_number <if test="dataScope == 1"> AND p1.province_tag = 'province' </if> + LEFT JOIN t_yw_point p2 ON t_monitor.serial_number = p2.serial_number AND p2.recovery = 1 <if test="dataScope == 1"> AND p2.province_tag = 'province' </if> + WHERE INSTR(camera_fun_type, 1) + <if test="deptId != null"> AND p1.dept_id = #{deptId} AND p2.dept_id = #{deptId} </if> + UNION ALL + SELECT + '杞﹁締' as type, + COUNT(p1.id) AS totalNum, + COUNT(p2.id) AS errorNum, + COUNT(p1.id) - COUNT(p2.id) AS normalNum + FROM t_monitor + LEFT JOIN t_yw_point p1 ON t_monitor.serial_number = p1.serial_number <if test="dataScope == 1"> AND p1.province_tag = 'province' </if> + LEFT JOIN t_yw_point p2 ON t_monitor.serial_number = p2.serial_number AND p2.recovery = 1 <if test="dataScope == 1"> AND p2.province_tag = 'province' </if> + WHERE INSTR(camera_fun_type, 2) + <if test="deptId != null"> AND p1.dept_id = #{deptId} AND p2.dept_id = #{deptId} </if> + UNION ALL + SELECT + '浜鸿劯' as type, + COUNT(p1.id) AS totalNum, + COUNT(p2.id) AS errorNum, + COUNT(p1.id) - COUNT(p2.id) AS normalNum + FROM t_monitor + LEFT JOIN t_yw_point p1 ON t_monitor.serial_number = p1.serial_number <if test="dataScope == 1"> AND p1.province_tag = 'province' </if> + LEFT JOIN t_yw_point p2 ON t_monitor.serial_number = p2.serial_number AND p2.recovery = 1 <if test="dataScope == 1"> AND p2.province_tag = 'province' </if> + WHERE INSTR(camera_fun_type, 3) + <if test="deptId != null"> AND p1.dept_id = #{deptId} AND p2.dept_id = #{deptId} </if> + </select> + + <select id="monitorRate" resultType="com.ycl.platform.domain.vo.screen.MonitorRateVO"> + SELECT + * + FROM + -- 浜鸿劯璁惧 + ( + SELECT + d.area, + IFNULL(ROUND((COUNT(m.id) - COUNT(m2.id)) / COUNT(m.id) * 100, 2), 0) AS faceRate, + COUNT(m.id) - COUNT(m2.id) AS faceNormalNum, + COUNT(m2.id) AS faceErrorNum + FROM + sys_dept d + LEFT JOIN t_yw_point p ON p.dept_id = d.dept_id AND p.deleted = 0 <if test="dataScope == 1"> AND p.province_tag = 'province' </if> + LEFT JOIN t_yw_point p2 ON p2.dept_id = d.dept_id AND p2.deleted = 0 AND p2.recovery = 1 <if test="dataScope == 1"> AND p2.province_tag = 'province' </if> + LEFT JOIN t_monitor m ON m.serial_number = p.serial_number AND INSTR(m.camera_fun_type, 1) + LEFT JOIN t_monitor m2 ON m2.serial_number = p2.serial_number AND INSTR(m2.camera_fun_type, 1) + WHERE d.del_flag = 0 AND d.area IS NOT NULL + GROUP BY d.area, d.dept_id + ORDER BY d.dept_id + ) a + INNER JOIN + -- 杞﹁締璁惧 + ( + SELECT + d.area, + IFNULL(ROUND((COUNT(m.id) - COUNT(m2.id)) / COUNT(m.id) * 100, 2), 0) AS carRate, + COUNT(m.id) - COUNT(m2.id) AS carNormalNum, + COUNT(m2.id) AS carErrorNum + FROM + sys_dept d + LEFT JOIN t_yw_point p ON p.dept_id = d.dept_id AND p.deleted = 0 <if test="dataScope == 1"> AND p.province_tag = 'province' </if> + LEFT JOIN t_yw_point p2 ON p2.dept_id = d.dept_id AND p2.deleted = 0 AND p2.recovery = 1 <if test="dataScope == 1"> AND p2.province_tag = 'province' </if> + LEFT JOIN t_monitor m ON m.serial_number = p.serial_number AND INSTR(m.camera_fun_type, 2) + LEFT JOIN t_monitor m2 ON m2.serial_number = p2.serial_number AND INSTR(m2.camera_fun_type, 2) + WHERE d.del_flag = 0 AND d.area IS NOT NULL + GROUP BY d.area, d.dept_id + ORDER BY d.dept_id + ) b ON a.area = b.area + INNER JOIN + -- 瑙嗛璁惧 + ( + SELECT + d.area, + IFNULL(ROUND((COUNT(m.id) - COUNT(m2.id)) / COUNT(m.id) * 100, 2), 0) AS videoRate, + COUNT(m.id) - COUNT(m2.id) AS videoNormalNum, + COUNT(m2.id) AS videoErrorNum + FROM + sys_dept d + LEFT JOIN t_yw_point p ON p.dept_id = d.dept_id AND p.deleted = 0 <if test="dataScope == 1"> AND p.province_tag = 'province' </if> + LEFT JOIN t_yw_point p2 ON p2.dept_id = d.dept_id AND p2.deleted = 0 AND p2.recovery = 1 <if test="dataScope == 1"> AND p2.province_tag = 'province' </if> + LEFT JOIN t_monitor m ON m.serial_number = p.serial_number AND INSTR(m.camera_fun_type, 3) + LEFT JOIN t_monitor m2 ON m2.serial_number = p2.serial_number AND INSTR(m2.camera_fun_type, 3) + WHERE d.del_flag = 0 AND d.area IS NOT NULL + GROUP BY d.area, d.dept_id + ORDER BY d.dept_id + ) c ON a.area = c.area + </select> + + + <select id="assetManagement" resultMap="dyMap"> + SELECT + tm.id, + tm.serial_number, + tm.name, + tm.site_type, + tm.mac_addr, + tm.ip, + tm.camera_fun_type, + tm.longitude, + tm.latitude, + tm.camera_capture_area, + tm.on_state, + tm.civil_code, + tm.integrated_device, + tm.camera_brand, + tm.address, + tm.net_working, + tm.public_security, + tm.installed_time, + tm.management_unit, + tm.mu_contact_info, + tm.storage_days, + tm.monitor_azimuth, + tm.scene_photo_addr, + tm.model, + tm.site_vulgo, + tm.camera_type, + tm.camera_light_type, + tm.encoded_format, + tm.camera_dept, + tm.hybm, + tm.lxbm, + 't_monitor' as tableName, + #{query.keyword} as keyword + FROM + t_monitor tm + <where> + <if test="query.keyword != null and query.keyword != ''"> + AND tm.name like concat('%', #{query.keyword}, '%') + </if> + </where> + </select> + + <select id="getDyColumns" resultMap="dynamicColumnMap"> + SELECT + * + FROM + t_dynamic_column_value dcv + LEFT JOIN t_dynamic_column dc ON dc.id = dcv.dynamic_column_id AND dc.table_name = #{tableName} + WHERE + dcv.ref_id = #{id} + <if test="keyword != null and keyword != ''"> + and dcv.column_value like concat('%', #{keyword}, '%') + </if> + </select> + + <resultMap id="dyMap" type="com.ycl.platform.domain.vo.TMonitorVO"> + <id column="id" property="id"/> + <result column="serial_number" property="serialNumber"/> + <result column="name" property="name"/> + <result column="site_type" property="siteType"/> + <result column="mac_addr" property="macAddr"/> + <result column="ip" property="ip"/> + <result column="longitude" property="longitude"/> + <result column="latitude" property="latitude"/> + <result column="camera_capture_area" property="cameraCaptureArea"/> + <result column="camera_fun_type" property="cameraFunType"/> + <result column="on_state" property="onState"/> + <result column="civil_code" property="civilCode"/> + <result column="integrated_device" property="integratedDevice"/> + <result column="camera_brand" property="cameraBrand"/> + <result column="address" property="address"/> + <result column="public_security" property="publicSecurity"/> + <result column="installed_time" property="installedTime"/> + <result column="management_unit" property="managementUnit"/> + <result column="mu_contact_info" property="muContactInfo"/> + <result column="storage_days" property="storageDays"/> + <result column="monitor_azimuth" property="monitorAzimuth"/> + <result column="scene_photo_addr" property="scenePhotoAddr"/> + <result column="model" property="model"/> + <result column="site_vulgo" property="siteVulgo"/> + <result column="camera_type" property="cameraType"/> + <result column="camera_light_type" property="cameraLightType"/> + <result column="encoded_format" property="encodedFormat"/> + <result column="camera_dept" property="cameraDept"/> + <result column="hybm" property="hybm"/> + <result column="lxbm" property="lxbm"/> + <collection property="dynamicColumnList" select="getDyColumns" column="{id=id,tableName=tableName,keyword=keyword}" ofType="com.ycl.platform.domain.vo.DynamicColumnVO"/> + </resultMap> + + <resultMap id="dynamicColumnMap" type="com.ycl.platform.domain.vo.DynamicColumnVO"> + <result column="prop_name" property="propName"/> + <result column="label_value" property="labelValue"/> + <result column="column_value" property="columnValue"/> + </resultMap> + + + <delete id="deleteAll"> + delete from t_monitor + </delete> </mapper> -- Gitblit v1.8.0