49 lines
1.1 KiB
Java
49 lines
1.1 KiB
Java
package com.ruoyi.system.service;
|
|
|
|
import com.ruoyi.common.core.domain.PageQuery;
|
|
import com.ruoyi.common.core.page.TableDataInfo;
|
|
import com.ruoyi.system.domain.bo.StandardPartsBo;
|
|
import com.ruoyi.system.domain.vo.StandardPartsVo;
|
|
|
|
import java.util.Collection;
|
|
import java.util.List;
|
|
|
|
/**
|
|
* 企业标准Service接口
|
|
*
|
|
* @author ruoyi
|
|
* @date 2024-05-09
|
|
*/
|
|
public interface IStandardPartsService {
|
|
|
|
/**
|
|
* 查询企业标准
|
|
*/
|
|
StandardPartsVo queryById(Long id);
|
|
|
|
/**
|
|
* 查询企业标准列表
|
|
*/
|
|
TableDataInfo<StandardPartsVo> queryPageList(StandardPartsBo bo, PageQuery pageQuery);
|
|
|
|
/**
|
|
* 查询企业标准列表
|
|
*/
|
|
List<StandardPartsVo> queryList(StandardPartsBo bo);
|
|
|
|
/**
|
|
* 新增企业标准
|
|
*/
|
|
Boolean insertByBo(StandardPartsBo bo);
|
|
|
|
/**
|
|
* 修改企业标准
|
|
*/
|
|
Boolean updateByBo(StandardPartsBo bo);
|
|
|
|
/**
|
|
* 校验并批量删除企业标准信息
|
|
*/
|
|
Boolean deleteWithValidByIds(Collection<Long> ids, Boolean isValid);
|
|
}
|