package com.ruoyi.gas.service; import com.ruoyi.common.core.mybatisplus.core.IServicePlus; import com.ruoyi.common.core.page.TableDataInfo; import com.ruoyi.gas.domain.GValveWellInspection; import com.ruoyi.gas.domain.bo.GValveWellInspectionBo; import com.ruoyi.gas.domain.vo.GValveWellInspectionVo; import com.ruoyi.gas.domain.vo.GValveWellInspectionVos; import java.util.Collection; import java.util.List; /** * 阀井巡查Service接口 * * @author ruoyi * @date 2024-03-18 */ public interface IGValveWellInspectionService extends IServicePlus { /** * 查询单个 * @return */ GValveWellInspectionVo queryById(Long id); /** * 查询列表 */ TableDataInfo queryPageList(GValveWellInspectionBo bo); /** * 查询列表 */ List queryList(GValveWellInspectionBo bo); /** * 根据新增业务对象插入阀井巡查 * @param bo 阀井巡查新增业务对象 * @return */ Boolean insertByBo(GValveWellInspectionBo bo); /** * 根据编辑业务对象修改阀井巡查 * @param bo 阀井巡查编辑业务对象 * @return */ Boolean updateByBo(GValveWellInspectionBo bo); /** * 校验并删除数据 * @param ids 主键集合 * @param isValid 是否校验,true-删除前校验,false-不校验 * @return */ Boolean deleteWithValidByIds(Collection ids, Boolean isValid); }