From fac4425e76ee53a0a77373d87cb0563387364f0e Mon Sep 17 00:00:00 2001 From: ‘liusuyi’ <1951119284@qq.com> Date: 星期五, 10 十一月 2023 13:58:15 +0800 Subject: [PATCH] 增加递归获取部门和雷达组织 --- ard-work/src/main/resources/mapper/alarmpoints/ArdAlarmpointsWellMapper.xml | 55 +++++++++++++++++++++++++++++++++++++++++++++++-------- 1 files changed, 47 insertions(+), 8 deletions(-) diff --git a/ard-work/src/main/resources/mapper/alarmpoints/ArdAlarmpointsWellMapper.xml b/ard-work/src/main/resources/mapper/alarmpoints/ArdAlarmpointsWellMapper.xml index 5f3d1ed..3e5dea9 100644 --- a/ard-work/src/main/resources/mapper/alarmpoints/ArdAlarmpointsWellMapper.xml +++ b/ard-work/src/main/resources/mapper/alarmpoints/ArdAlarmpointsWellMapper.xml @@ -70,7 +70,7 @@ <select id="selectArdAlarmpointsWellList" parameterType="ArdAlarmpointsWell" resultMap="ArdAlarmpointsWellResult"> <include refid="selectArdAlarmpointsWellVo"/> <where> - <if test="wellId != null and wellId != ''">and c.well_id = #{wellId}</if> + <if test="wellId != null and wellId != ''">and c.well_id like ('%${wellId}%')</if> <if test="wellNumber != null and wellNumber != ''">and c.well_number = #{wellNumber}</if> <if test="userId != null and userId != ''">and c.user_id = #{userId}</if> <if test="deptId != null ">and (c.dept_id = #{deptId} OR c.dept_id IN ( SELECT t.dept_id FROM sys_dept t @@ -185,7 +185,35 @@ </trim> where id = #{id} </update> - + <update id="updateArdAlarmpointsWellByWellId" parameterType="ArdAlarmpointsWell"> + update ard_alarmpoints_well + <trim prefix="SET" suffixOverrides=","> + <if test="wellId != null">well_id = #{wellId},</if> + <if test="wellNumber != null">well_number = #{wellNumber},</if> + <if test="oilProduction != null">oil_production = #{oilProduction},</if> + <if test="wellBlock != null">well_block = #{wellBlock},</if> + <if test="productionDate != null">production_date = #{productionDate},</if> + <if test="displacementMode != null">displacement_mode = #{displacementMode},</if> + <if test="surroundingEnvironment != null">surrounding_environment = #{surroundingEnvironment},</if> + <if test="wellType != null">well_type = #{wellType},</if> + <if test="installedLoad != null">installed_load = #{installedLoad},</if> + <if test="meteringStation != null">metering_station = #{meteringStation},</if> + <if test="transferStation != null">transfer_station = #{transferStation},</if> + <if test="dehydrationStation != null">dehydration_station = #{dehydrationStation},</if> + <if test="runStatus != null">run_status = #{runStatus},</if> + <if test="longitude != null">longitude = #{longitude},</if> + <if test="latitude != null">latitude = #{latitude},</if> + <if test="altitude != null">altitude = #{altitude},</if> + <if test="deptId != null">dept_id = #{deptId},</if> + <if test="userId != null">user_id = #{userId},</if> + <if test="createBy != null">create_by = #{createBy},</if> + <if test="createTime != null">create_time = #{createTime},</if> + <if test="updateBy != null">update_by = #{updateBy},</if> + <if test="updateTime != null">update_time = #{updateTime},</if> + <if test="cameraId != null">camera_id = #{cameraId},</if> + </trim> + where well_id = #{wellId} + </update> <delete id="deleteArdAlarmpointsWellById" parameterType="String"> delete from ard_alarmpoints_well @@ -198,14 +226,25 @@ #{id} </foreach> </delete> - <select id="checkWellIdExists" resultType="boolean"> - SELECT COUNT(*) - FROM ard_alarmpoints_well - WHERE well_id = #{wellId} + <select id="checkWellIdExists" resultType="ArdAlarmpointsWell"> + SELECT * FROM ard_alarmpoints_well WHERE well_id = #{wellId} limit 1 </select> <select id="wellByPlanId" parameterType="String" resultMap="wellResult"> - select ard_app_patrolpoint.alarmpoints_id as id,ard_alarmpoints_well.well_id, ard_app_patrolpoint."type" from ard_alarmpoints_well LEFT JOIN ard_app_patrolpoint on ard_app_patrolpoint.alarmpoints_id = ard_alarmpoints_well.id where ard_alarmpoints_well.id in (select alarmpoints_id from ard_app_patrolpoint where patrolplan_id = #{id}) - GROUP BY ard_app_patrolpoint.alarmpoints_id,ard_alarmpoints_well.well_id,ard_app_patrolpoint."type" + select ard_app_patrolpoint.alarmpoints_id as id,ard_alarmpoints_well.well_id, ard_app_patrolpoint."type",ard_alarmpoints_well.longitude,ard_alarmpoints_well.latitude from ard_alarmpoints_well LEFT JOIN ard_app_patrolpoint on ard_app_patrolpoint.alarmpoints_id = ard_alarmpoints_well.id where ard_alarmpoints_well.id in (select alarmpoints_id from ard_app_patrolpoint where patrolplan_id = #{id}) + GROUP BY ard_app_patrolpoint.alarmpoints_id,ard_alarmpoints_well.well_id,ard_app_patrolpoint."type",ard_alarmpoints_well.longitude,ard_alarmpoints_well.latitude + </select> + + <select id="wellListDept" parameterType="List" resultType="com.ruoyi.alarmpoints.well.domain.ArdAlarmpointsWellDeptVo"> + Select well.id,well.well_id,well.well_number,well.oil_production,well.well_block,well.production_date, + well.displacement_mode,well.surrounding_environment,well.well_type,well.installed_load,well.metering_station, + well.transfer_station,well.dehydration_station,well.run_status,well.longitude,well.latitude,well.altitude,well.dept_id, + dept.parent_id,dept.ancestors,dept.dept_name + from ard_alarmpoints_well well + left join sys_dept dept on well.dept_id = dept.dept_id + where well.dept_id in + <foreach collection="list" index="index" item="item" open="(" separator="," close=")"> + #{item} + </foreach> </select> </mapper> \ No newline at end of file -- Gitblit v1.9.3