zhangjian
2023-09-23 2a18523931228c78ae359997986d004a39545d51
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接口
@@ -95,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);
}