春风项目四线(合箱线、总装线)
yyt
6 天以前 dd44823b3c6cc003de21ea023cea7ea8d85a873c
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
package com.jcdm.main.da.tileMatchCollection.service;
 
import java.util.List;
import com.jcdm.main.da.tileMatchCollection.domain.DaTileMatchCollection;
 
/**
 * 条码采集Service接口
 * 
 * @author yyt
 * @date 2024-06-06
 */
public interface IDaTileMatchCollectionService 
{
    /**
     * 查询条码采集
     * 
     * @param id 条码采集主键
     * @return 条码采集
     */
    public DaTileMatchCollection selectDaTileMatchCollectionById(Long id);
 
    /**
     * 查询条码采集列表
     * 
     * @param daTileMatchCollection 条码采集
     * @return 条码采集集合
     */
    public List<DaTileMatchCollection> selectDaTileMatchCollectionList(DaTileMatchCollection daTileMatchCollection);
 
    /**
     * 新增条码采集
     * 
     * @param daTileMatchCollection 条码采集
     * @return 结果
     */
    public int insertDaTileMatchCollection(DaTileMatchCollection daTileMatchCollection);
 
    /**
     * 修改条码采集
     * 
     * @param daTileMatchCollection 条码采集
     * @return 结果
     */
    public int updateDaTileMatchCollection(DaTileMatchCollection daTileMatchCollection);
 
    /**
     * 批量删除条码采集
     * 
     * @param ids 需要删除的条码采集主键集合
     * @return 结果
     */
    public int deleteDaTileMatchCollectionByIds(Long[] ids);
 
    /**
     * 删除条码采集信息
     * 
     * @param id 条码采集主键
     * @return 结果
     */
    public int deleteDaTileMatchCollectionById(Long id);
}