From 9731eecabe3fc87cee6859915cd8daa36ccca6ef Mon Sep 17 00:00:00 2001 From: fuliqi <fuliqi@qq.com> Date: 星期二, 13 八月 2024 14:41:25 +0800 Subject: [PATCH] 一机一档用一机一档合格率替代 --- ycl-server/src/main/resources/mapper/zgyw/TMonitorMapper.xml | 10 ++++++++++ 1 files changed, 10 insertions(+), 0 deletions(-) diff --git a/ycl-server/src/main/resources/mapper/zgyw/TMonitorMapper.xml b/ycl-server/src/main/resources/mapper/zgyw/TMonitorMapper.xml index 33e3d5f..0de6265 100644 --- a/ycl-server/src/main/resources/mapper/zgyw/TMonitorMapper.xml +++ b/ycl-server/src/main/resources/mapper/zgyw/TMonitorMapper.xml @@ -135,6 +135,16 @@ ${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} -- Gitblit v1.8.0