package com.billion.main.bs.service;
|
|
import java.util.List;
|
|
import com.baomidou.mybatisplus.extension.service.IService;
|
import com.billion.main.bs.domain.BsRouteInfo;
|
|
/**
|
* 工艺路线Service接口
|
*
|
* @author Billion-Yi
|
* @date 2024-11-23
|
*/
|
public interface IBsRouteInfoService extends IService<BsRouteInfo>
|
{
|
/**
|
* 查询工艺路线
|
*
|
* @param id 工艺路线主键
|
* @return 工艺路线
|
*/
|
public BsRouteInfo selectBsRouteInfoById(Long id);
|
|
/**
|
* 查询工艺路线列表
|
*
|
* @param bsRouteInfo 工艺路线
|
* @return 工艺路线集合
|
*/
|
public List<BsRouteInfo> selectBsRouteInfoList(BsRouteInfo bsRouteInfo);
|
|
/**
|
* 新增工艺路线
|
*
|
* @param bsRouteInfo 工艺路线
|
* @return 结果
|
*/
|
public int insertBsRouteInfo(BsRouteInfo bsRouteInfo);
|
|
/**
|
* 修改工艺路线
|
*
|
* @param bsRouteInfo 工艺路线
|
* @return 结果
|
*/
|
public int updateBsRouteInfo(BsRouteInfo bsRouteInfo);
|
|
/**
|
* 批量删除工艺路线
|
*
|
* @param ids 需要删除的工艺路线主键集合
|
* @return 结果
|
*/
|
public int deleteBsRouteInfoByIds(Long[] ids);
|
|
/**
|
* 删除工艺路线信息
|
*
|
* @param id 工艺路线主键
|
* @return 结果
|
*/
|
public int deleteBsRouteInfoById(Long id);
|
}
|