admin
2024-05-14 5966d6d329279119f3af29508b97c1d2c0bbe2bd
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
96
97
98
99
100
package com.jcdm.main.da.testDeviceInterface.service.impl;
 
import java.util.List;
 
import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl;
import com.jcdm.common.utils.DateUtils;
import com.jcdm.main.da.passingStationCollection.domain.DaPassingStationCollection;
import com.jcdm.main.da.passingStationCollection.mapper.DaPassingStationCollectionMapper;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Service;
import com.jcdm.main.da.testDeviceInterface.mapper.DaTestDeviceInterfaceMapper;
import com.jcdm.main.da.testDeviceInterface.domain.DaTestDeviceInterface;
import com.jcdm.main.da.testDeviceInterface.service.IDaTestDeviceInterfaceService;
 
/**
 * 测试设备接口数据Service业务层处理
 * 
 * @author hdy
 * @date 2024-05-13
 */
@Service
public class DaTestDeviceInterfaceServiceImpl extends ServiceImpl<DaTestDeviceInterfaceMapper, DaTestDeviceInterface> implements IDaTestDeviceInterfaceService
{
    @Autowired
    private DaTestDeviceInterfaceMapper daTestDeviceInterfaceMapper;
 
    /**
     * 查询测试设备接口数据
     * 
     * @param id 测试设备接口数据主键
     * @return 测试设备接口数据
     */
    @Override
    public DaTestDeviceInterface selectDaTestDeviceInterfaceById(Long id)
    {
        return daTestDeviceInterfaceMapper.selectDaTestDeviceInterfaceById(id);
    }
 
    /**
     * 查询测试设备接口数据列表
     * 
     * @param daTestDeviceInterface 测试设备接口数据
     * @return 测试设备接口数据
     */
    @Override
    public List<DaTestDeviceInterface> selectDaTestDeviceInterfaceList(DaTestDeviceInterface daTestDeviceInterface)
    {
        return daTestDeviceInterfaceMapper.selectDaTestDeviceInterfaceList(daTestDeviceInterface);
    }
 
    /**
     * 新增测试设备接口数据
     * 
     * @param daTestDeviceInterface 测试设备接口数据
     * @return 结果
     */
    @Override
    public int insertDaTestDeviceInterface(DaTestDeviceInterface daTestDeviceInterface)
    {
        daTestDeviceInterface.setCreateTime(DateUtils.getNowDate());
        return daTestDeviceInterfaceMapper.insertDaTestDeviceInterface(daTestDeviceInterface);
    }
 
    /**
     * 修改测试设备接口数据
     * 
     * @param daTestDeviceInterface 测试设备接口数据
     * @return 结果
     */
    @Override
    public int updateDaTestDeviceInterface(DaTestDeviceInterface daTestDeviceInterface)
    {
        daTestDeviceInterface.setUpdateTime(DateUtils.getNowDate());
        return daTestDeviceInterfaceMapper.updateDaTestDeviceInterface(daTestDeviceInterface);
    }
 
    /**
     * 批量删除测试设备接口数据
     * 
     * @param ids 需要删除的测试设备接口数据主键
     * @return 结果
     */
    @Override
    public int deleteDaTestDeviceInterfaceByIds(Long[] ids)
    {
        return daTestDeviceInterfaceMapper.deleteDaTestDeviceInterfaceByIds(ids);
    }
 
    /**
     * 删除测试设备接口数据信息
     * 
     * @param id 测试设备接口数据主键
     * @return 结果
     */
    @Override
    public int deleteDaTestDeviceInterfaceById(Long id)
    {
        return daTestDeviceInterfaceMapper.deleteDaTestDeviceInterfaceById(id);
    }
}