admin
2025-04-09 9a0334b6e46d9503246d99be0a3a79945dee7919
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
64
65
package com.jcdm.main.bs.batchInfo.service;
 
import java.util.List;
 
import com.baomidou.mybatisplus.extension.service.IService;
import com.jcdm.main.bs.batchInfo.domain.BsBatchInfo;
 
/**
 * 批次信息录入Service接口
 * 
 * @author Yi
 * @date 2024-10-15
 */
public interface IBsBatchInfoService extends IService<BsBatchInfo>
{
    /**
     * 查询批次信息录入
     * 
     * @param id 批次信息录入主键
     * @return 批次信息录入
     */
    public BsBatchInfo selectBsBatchInfoById(Long id);
 
    /**
     * 查询批次信息录入列表
     * 
     * @param bsBatchInfo 批次信息录入
     * @return 批次信息录入集合
     */
    public List<BsBatchInfo> selectBsBatchInfoList(BsBatchInfo bsBatchInfo);
 
    /**
     * 新增批次信息录入
     * 
     * @param bsBatchInfo 批次信息录入
     * @return 结果
     */
    public int insertBsBatchInfo(BsBatchInfo bsBatchInfo);
 
    /**
     * 修改批次信息录入
     * 
     * @param bsBatchInfo 批次信息录入
     * @return 结果
     */
    public int updateBsBatchInfo(BsBatchInfo bsBatchInfo);
 
    /**
     * 批量删除批次信息录入
     * 
     * @param ids 需要删除的批次信息录入主键集合
     * @return 结果
     */
    public int deleteBsBatchInfoByIds(Long[] ids);
 
    /**
     * 删除批次信息录入信息
     * 
     * @param id 批次信息录入主键
     * @return 结果
     */
    public int deleteBsBatchInfoById(Long id);
 
    int bacthInput(Long[] ids);
}