|  |  |  | 
|---|
|  |  |  | package com.ruoyi.alarmpoints.well.service; | 
|---|
|  |  |  |  | 
|---|
|  |  |  | import java.util.List; | 
|---|
|  |  |  | import java.util.Map; | 
|---|
|  |  |  |  | 
|---|
|  |  |  | import com.github.pagehelper.PageInfo; | 
|---|
|  |  |  | import com.ruoyi.alarmpoints.well.domain.ArdAlarmpointsWell; | 
|---|
|  |  |  | import com.ruoyi.alarmpoints.well.domain.ArdAlarmpointsWellDeptVo; | 
|---|
|  |  |  | import com.ruoyi.alarmpoints.well.domain.ArdAlarmpointsWellParam; | 
|---|
|  |  |  | import com.ruoyi.common.core.domain.entity.SysConfig; | 
|---|
|  |  |  |  | 
|---|
|  |  |  | /** | 
|---|
|  |  |  | * 井管理Service接口 | 
|---|
|  |  |  | * | 
|---|
|  |  |  | * | 
|---|
|  |  |  | * @author 刘苏义 | 
|---|
|  |  |  | * @date 2023-03-07 | 
|---|
|  |  |  | */ | 
|---|
|  |  |  | public interface IArdAlarmpointsWellService | 
|---|
|  |  |  | public interface IArdAlarmpointsWellService | 
|---|
|  |  |  | { | 
|---|
|  |  |  | /** | 
|---|
|  |  |  | * 查询井管理 | 
|---|
|  |  |  | * | 
|---|
|  |  |  | * | 
|---|
|  |  |  | * @param id 井管理主键 | 
|---|
|  |  |  | * @return 井管理 | 
|---|
|  |  |  | */ | 
|---|
|  |  |  | 
|---|
|  |  |  | public ArdAlarmpointsWell selectArdAlarmpointsWellByWellId(String wellId); | 
|---|
|  |  |  | /** | 
|---|
|  |  |  | * 查询井管理列表 | 
|---|
|  |  |  | * | 
|---|
|  |  |  | * | 
|---|
|  |  |  | * @param ardAlarmpointsWell 井管理 | 
|---|
|  |  |  | * @return 井管理集合 | 
|---|
|  |  |  | */ | 
|---|
|  |  |  | 
|---|
|  |  |  |  | 
|---|
|  |  |  | /** | 
|---|
|  |  |  | * 新增井管理 | 
|---|
|  |  |  | * | 
|---|
|  |  |  | * | 
|---|
|  |  |  | * @param ardAlarmpointsWell 井管理 | 
|---|
|  |  |  | * @return 结果 | 
|---|
|  |  |  | */ | 
|---|
|  |  |  | 
|---|
|  |  |  |  | 
|---|
|  |  |  | /** | 
|---|
|  |  |  | * 修改井管理 | 
|---|
|  |  |  | * | 
|---|
|  |  |  | * | 
|---|
|  |  |  | * @param ardAlarmpointsWell 井管理 | 
|---|
|  |  |  | * @return 结果 | 
|---|
|  |  |  | */ | 
|---|
|  |  |  | 
|---|
|  |  |  | public int updateArdAlarmpointsWellByWellId(ArdAlarmpointsWell ardAlarmpointsWell); | 
|---|
|  |  |  | /** | 
|---|
|  |  |  | * 批量删除井管理 | 
|---|
|  |  |  | * | 
|---|
|  |  |  | * | 
|---|
|  |  |  | * @param ids 需要删除的井管理主键集合 | 
|---|
|  |  |  | * @return 结果 | 
|---|
|  |  |  | */ | 
|---|
|  |  |  | 
|---|
|  |  |  |  | 
|---|
|  |  |  | /** | 
|---|
|  |  |  | * 删除井管理信息 | 
|---|
|  |  |  | * | 
|---|
|  |  |  | * | 
|---|
|  |  |  | * @param id 井管理主键 | 
|---|
|  |  |  | * @return 结果 | 
|---|
|  |  |  | */ | 
|---|
|  |  |  | 
|---|
|  |  |  | * 2023/9/27 10:26:35 | 
|---|
|  |  |  | */ | 
|---|
|  |  |  | List<ArdAlarmpointsWell> getNearbyWellList(Double longitudeCenter,Double latitudeCenter, Long deptId,Integer range); | 
|---|
|  |  |  |  | 
|---|
|  |  |  |  | 
|---|
|  |  |  | /** | 
|---|
|  |  |  | * 查询油井动静态数据 | 
|---|
|  |  |  | */ | 
|---|
|  |  |  | Map<String,Object> getWellDataByWellId(String wellId, List<SysConfig> config); | 
|---|
|  |  |  |  | 
|---|
|  |  |  | Map<String,Object> getWellDataByPatrolplanIdAndPosition(Map<String,Object> para,List<SysConfig> sysConfigResult); | 
|---|
|  |  |  |  | 
|---|
|  |  |  | ArdAlarmpointsWell getWellById(String id); | 
|---|
|  |  |  | } | 
|---|