hdy
4 天以前 51eb318f6df9ebc7d1ff47522e33b2ee7cea1ba8
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
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);
}