| | |
| | | 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> |
| | |
| | | #{item} |
| | | </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> |
| | | </mapper> |