aijinhui
2023-09-19 e943a09b6d1e4ff3d9c2589c739f99dba514657e
ard-work/src/main/java/com/ruoyi/alarmpoints/well/service/IArdAlarmpointsWellService.java
@@ -2,7 +2,10 @@
import java.util.List;
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;
/**
 * 井管理Service接口
@@ -33,6 +36,14 @@
     * @return 井管理集合
     */
    public List<ArdAlarmpointsWell> selectArdAlarmpointsWellList(ArdAlarmpointsWell ardAlarmpointsWell);
    /**
     *
     * @param ardAlarmpointsWell 按井编号查询
     * @return
     */
    public List<ArdAlarmpointsWell> selectArdAlarmpointsWellByWellIdLike(ArdAlarmpointsWell ardAlarmpointsWell);
    /**
     * 新增井管理
@@ -87,4 +98,24 @@
     * @param well 井信息
     */
    public void checkWellAllowed(ArdAlarmpointsWell well);
    /**
     * 核对井号是否唯一
     *
     * @param id 需要核对的井的主键
     * @return 结果
     */
    public Boolean checkWellIdExists(ArdAlarmpointsWell well);
    List<ArdAlarmpointsWell> wellByDeptList(List<Long> deptList);
    ArdAlarmpointsWell wellById(String id);
    List<ArdAlarmpointsWell> wellList(List<Long> deptList);
    PageInfo<ArdAlarmpointsWell> conditionList(ArdAlarmpointsWellParam ardAlarmpointsWellParam);
    List<ArdAlarmpointsWellDeptVo> wellListDept(List<Long> deptList);
}