春风项目四线(合箱线、总装线)
yyt
2024-06-26 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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
package com.jcdm.main.da.tileMatchCollection.service.impl;
 
import java.util.List;
import com.jcdm.common.utils.DateUtils;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Service;
import com.jcdm.main.da.tileMatchCollection.mapper.DaTileMatchCollectionMapper;
import com.jcdm.main.da.tileMatchCollection.domain.DaTileMatchCollection;
import com.jcdm.main.da.tileMatchCollection.service.IDaTileMatchCollectionService;
 
/**
 * 条码采集Service业务层处理
 * 
 * @author yyt
 * @date 2024-06-06
 */
@Service
public class DaTileMatchCollectionServiceImpl implements IDaTileMatchCollectionService 
{
    @Autowired
    private DaTileMatchCollectionMapper daTileMatchCollectionMapper;
 
    /**
     * 查询条码采集
     * 
     * @param id 条码采集主键
     * @return 条码采集
     */
    @Override
    public DaTileMatchCollection selectDaTileMatchCollectionById(Long id)
    {
        return daTileMatchCollectionMapper.selectDaTileMatchCollectionById(id);
    }
 
    /**
     * 查询条码采集列表
     * 
     * @param daTileMatchCollection 条码采集
     * @return 条码采集
     */
    @Override
    public List<DaTileMatchCollection> selectDaTileMatchCollectionList(DaTileMatchCollection daTileMatchCollection)
    {
        return daTileMatchCollectionMapper.selectDaTileMatchCollectionList(daTileMatchCollection);
    }
 
    /**
     * 新增条码采集
     * 
     * @param daTileMatchCollection 条码采集
     * @return 结果
     */
    @Override
    public int insertDaTileMatchCollection(DaTileMatchCollection daTileMatchCollection)
    {
        daTileMatchCollection.setCreateTime(DateUtils.getNowDate());
        return daTileMatchCollectionMapper.insertDaTileMatchCollection(daTileMatchCollection);
    }
 
    /**
     * 修改条码采集
     * 
     * @param daTileMatchCollection 条码采集
     * @return 结果
     */
    @Override
    public int updateDaTileMatchCollection(DaTileMatchCollection daTileMatchCollection)
    {
        return daTileMatchCollectionMapper.updateDaTileMatchCollection(daTileMatchCollection);
    }
 
    /**
     * 批量删除条码采集
     * 
     * @param ids 需要删除的条码采集主键
     * @return 结果
     */
    @Override
    public int deleteDaTileMatchCollectionByIds(Long[] ids)
    {
        return daTileMatchCollectionMapper.deleteDaTileMatchCollectionByIds(ids);
    }
 
    /**
     * 删除条码采集信息
     * 
     * @param id 条码采集主键
     * @return 结果
     */
    @Override
    public int deleteDaTileMatchCollectionById(Long id)
    {
        return daTileMatchCollectionMapper.deleteDaTileMatchCollectionById(id);
    }
}