cl
2024-01-16 cf6bff3922bbd0624b98834f6ea85c8e619e564f
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
66
67
68
69
package cn.stylefeng.guns.modular.bs.batchCodeStorage.service;
 
import cn.stylefeng.guns.base.pojo.page.LayuiPageInfo;
import cn.stylefeng.guns.modular.bs.batchCodeStorage.entity.BatchCodeStorage;
import cn.stylefeng.guns.modular.bs.batchCodeStorage.model.params.BatchCodeStorageParam;
import cn.stylefeng.guns.modular.bs.batchCodeStorage.model.result.BatchCodeStorageResult;
import com.baomidou.mybatisplus.extension.service.IService;
 
import java.util.List;
 
/**
 * <p>
 * 批次存储临时表 服务类
 * </p>
 *
 * @author zrm
 * @since 2023-02-15
 */
public interface BatchCodeStorageService extends IService<BatchCodeStorage> {
 
    /**
     * 新增
     *
     * @author zrm
     * @Date 2023-02-15
     */
    void add(BatchCodeStorageParam param);
 
    /**
     * 删除
     *
     * @author zrm
     * @Date 2023-02-15
     */
    void delete(BatchCodeStorageParam param);
 
    /**
     * 更新
     *
     * @author zrm
     * @Date 2023-02-15
     */
    void update(BatchCodeStorageParam param);
 
    /**
     * 查询单条数据,Specification模式
     *
     * @author zrm
     * @Date 2023-02-15
     */
    BatchCodeStorageResult findBySpec(BatchCodeStorageParam param);
 
    /**
     * 查询列表,Specification模式
     *
     * @author zrm
     * @Date 2023-02-15
     */
    List<BatchCodeStorageResult> findListBySpec(BatchCodeStorageParam param);
 
    /**
     * 查询分页数据,Specification模式
     *
     * @author zrm
     * @Date 2023-02-15
     */
     LayuiPageInfo findPageBySpec(BatchCodeStorageParam param);
 
}