From 0abccf5e570dce53a802bca4ce25118dd900692c Mon Sep 17 00:00:00 2001 From: aijinhui <aijinhui> Date: 星期五, 23 二月 2024 14:07:21 +0800 Subject: [PATCH] Merge remote-tracking branch 'origin/master' --- ard-work/src/main/resources/mapper/alarmpoints/ArdAlarmpointsWellMapper.xml | 40 ++++++++++++++++++++++++++++++++++++++++ 1 files changed, 40 insertions(+), 0 deletions(-) diff --git a/ard-work/src/main/resources/mapper/alarmpoints/ArdAlarmpointsWellMapper.xml b/ard-work/src/main/resources/mapper/alarmpoints/ArdAlarmpointsWellMapper.xml index 938f638..5d4b794 100644 --- a/ard-work/src/main/resources/mapper/alarmpoints/ArdAlarmpointsWellMapper.xml +++ b/ard-work/src/main/resources/mapper/alarmpoints/ArdAlarmpointsWellMapper.xml @@ -70,6 +70,32 @@ left join sys_user u on u.user_id = c.user_id </sql> + <resultMap type="ArdAlarmpointsWell" id="ArdAlarmpointsWellOnlyResult"> + <result property="id" column="id"/> + <result property="wellId" column="well_id"/> + <result property="wellNumber" column="well_number"/> + <result property="oilProduction" column="oil_production"/> + <result property="wellBlock" column="well_block"/> + <result property="productionDate" column="production_date"/> + <result property="displacementMode" column="displacement_mode"/> + <result property="surroundingEnvironment" column="surrounding_environment"/> + <result property="wellType" column="well_type"/> + <result property="installedLoad" column="installed_load"/> + <result property="meteringStation" column="metering_station"/> + <result property="transferStation" column="transfer_station"/> + <result property="dehydrationStation" column="dehydration_station"/> + <result property="runStatus" column="run_status"/> + <result property="longitude" column="longitude"/> + <result property="latitude" column="latitude"/> + <result property="altitude" column="altitude"/> + <result property="deptId" column="dept_id"/> + <result property="userId" column="user_id"/> + <result property="createBy" column="create_by"/> + <result property="createTime" column="create_time"/> + <result property="updateBy" column="update_by"/> + <result property="updateTime" column="update_time"/> + </resultMap> + <select id="selectArdAlarmpointsWellList" parameterType="ArdAlarmpointsWell" resultMap="ArdAlarmpointsWellResult"> <include refid="selectArdAlarmpointsWellVo"/> <where> @@ -259,6 +285,20 @@ </foreach> </select> + <select id="getWellDataByPatrolplanIdAndPosition" resultMap="ArdAlarmpointsWellOnlyResult"> + select aaw.* from ard_app_patrolplan aap + inner join ard_app_patrolpoint aap0 on aap.id = aap0.patrolplan_id + inner join ard_alarmpoints_well aaw on aap0.alarmpoints_id = aaw.id + where del is null and aap.id = #{patrolplanId} + and f_compute_distance(cast(#{longitude} as decimal),cast(#{latitude} as decimal),aaw.longitude,aaw.latitude) + <= (select cast(sc.config_value as decimal) from sys_config sc where sc.config_key = 'appAlarmPointsDistance') + order by f_compute_distance(cast(#{longitude} as decimal),cast(#{latitude} as decimal),aaw.longitude,aaw.latitude) desc limit 1 offset 0 + </select> + + <select id="getWellById" resultMap="ArdAlarmpointsWellOnlyResult"> + select aaw.* from ard_alarmpoints_well aaw where aaw.id = #{id} + </select> + <select id="conditionList" parameterType="List" resultType="com.ruoyi.alarmpoints.well.domain.ArdAlarmpointsWellDeptVo"> -- Gitblit v1.9.3