hdy
4 天以前 51eb318f6df9ebc7d1ff47522e33b2ee7cea1ba8
提交 | 用户 | 时间
849473 1 package com.billion.main.bs.service;
A 2
3 import java.util.List;
4
5 import com.baomidou.mybatisplus.extension.service.IService;
6 import com.billion.main.bs.domain.BsRouteInfo;
7
8 /**
9  * 工艺路线Service接口
10  * 
11  * @author Billion-Yi
12  * @date 2024-11-23
13  */
14 public interface IBsRouteInfoService extends IService<BsRouteInfo>
15 {
16     /**
17      * 查询工艺路线
18      * 
19      * @param id 工艺路线主键
20      * @return 工艺路线
21      */
22     public BsRouteInfo selectBsRouteInfoById(Long id);
23
24     /**
25      * 查询工艺路线列表
26      * 
27      * @param bsRouteInfo 工艺路线
28      * @return 工艺路线集合
29      */
30     public List<BsRouteInfo> selectBsRouteInfoList(BsRouteInfo bsRouteInfo);
31
32     /**
33      * 新增工艺路线
34      * 
35      * @param bsRouteInfo 工艺路线
36      * @return 结果
37      */
38     public int insertBsRouteInfo(BsRouteInfo bsRouteInfo);
39
40     /**
41      * 修改工艺路线
42      * 
43      * @param bsRouteInfo 工艺路线
44      * @return 结果
45      */
46     public int updateBsRouteInfo(BsRouteInfo bsRouteInfo);
47
48     /**
49      * 批量删除工艺路线
50      * 
51      * @param ids 需要删除的工艺路线主键集合
52      * @return 结果
53      */
54     public int deleteBsRouteInfoByIds(Long[] ids);
55
56     /**
57      * 删除工艺路线信息
58      * 
59      * @param id 工艺路线主键
60      * @return 结果
61      */
62     public int deleteBsRouteInfoById(Long id);
63 }