package com.ruoyi.oa.service;
|
|
import com.ruoyi.oa.domain.SgOther;
|
import com.ruoyi.oa.domain.vo.SgOtherVo;
|
import com.ruoyi.oa.domain.bo.SgOtherBo;
|
import com.ruoyi.common.core.mybatisplus.core.IServicePlus;
|
import com.ruoyi.common.core.page.TableDataInfo;
|
|
import java.util.Collection;
|
import java.util.List;
|
|
/**
|
* 施工交付-其他Service接口
|
*
|
* @author ruoyi
|
* @date 2022-10-10
|
*/
|
public interface ISgOtherService extends IServicePlus<SgOther, SgOtherVo> {
|
/**
|
* 查询单个
|
* @return
|
*/
|
SgOtherVo queryById(Long id);
|
|
/**
|
* 查询列表
|
*/
|
TableDataInfo<SgOtherVo> queryPageList(SgOtherBo bo);
|
|
/**
|
* 查询列表
|
*/
|
List<SgOtherVo> queryList(SgOtherBo bo);
|
|
/**
|
* 根据新增业务对象插入施工交付-其他
|
* @param bo 施工交付-其他新增业务对象
|
* @return
|
*/
|
Boolean insertByBo(SgOtherBo bo);
|
|
/**
|
* 根据编辑业务对象修改施工交付-其他
|
* @param bo 施工交付-其他编辑业务对象
|
* @return
|
*/
|
Boolean updateByBo(SgOtherBo bo);
|
|
/**
|
* 校验并删除数据
|
* @param ids 主键集合
|
* @param isValid 是否校验,true-删除前校验,false-不校验
|
* @return
|
*/
|
Boolean deleteWithValidByIds(Collection<Long> ids, Boolean isValid);
|
}
|