admin
2024-05-14 5966d6d329279119f3af29508b97c1d2c0bbe2bd
提交 | 用户 | 时间
5966d6 1 package com.jcdm.main.da.testDeviceInterface.service.impl;
A 2
3 import java.util.List;
4
5 import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl;
6 import com.jcdm.common.utils.DateUtils;
7 import com.jcdm.main.da.passingStationCollection.domain.DaPassingStationCollection;
8 import com.jcdm.main.da.passingStationCollection.mapper.DaPassingStationCollectionMapper;
9 import org.springframework.beans.factory.annotation.Autowired;
10 import org.springframework.stereotype.Service;
11 import com.jcdm.main.da.testDeviceInterface.mapper.DaTestDeviceInterfaceMapper;
12 import com.jcdm.main.da.testDeviceInterface.domain.DaTestDeviceInterface;
13 import com.jcdm.main.da.testDeviceInterface.service.IDaTestDeviceInterfaceService;
14
15 /**
16  * 测试设备接口数据Service业务层处理
17  * 
18  * @author hdy
19  * @date 2024-05-13
20  */
21 @Service
22 public class DaTestDeviceInterfaceServiceImpl extends ServiceImpl<DaTestDeviceInterfaceMapper, DaTestDeviceInterface> implements IDaTestDeviceInterfaceService
23 {
24     @Autowired
25     private DaTestDeviceInterfaceMapper daTestDeviceInterfaceMapper;
26
27     /**
28      * 查询测试设备接口数据
29      * 
30      * @param id 测试设备接口数据主键
31      * @return 测试设备接口数据
32      */
33     @Override
34     public DaTestDeviceInterface selectDaTestDeviceInterfaceById(Long id)
35     {
36         return daTestDeviceInterfaceMapper.selectDaTestDeviceInterfaceById(id);
37     }
38
39     /**
40      * 查询测试设备接口数据列表
41      * 
42      * @param daTestDeviceInterface 测试设备接口数据
43      * @return 测试设备接口数据
44      */
45     @Override
46     public List<DaTestDeviceInterface> selectDaTestDeviceInterfaceList(DaTestDeviceInterface daTestDeviceInterface)
47     {
48         return daTestDeviceInterfaceMapper.selectDaTestDeviceInterfaceList(daTestDeviceInterface);
49     }
50
51     /**
52      * 新增测试设备接口数据
53      * 
54      * @param daTestDeviceInterface 测试设备接口数据
55      * @return 结果
56      */
57     @Override
58     public int insertDaTestDeviceInterface(DaTestDeviceInterface daTestDeviceInterface)
59     {
60         daTestDeviceInterface.setCreateTime(DateUtils.getNowDate());
61         return daTestDeviceInterfaceMapper.insertDaTestDeviceInterface(daTestDeviceInterface);
62     }
63
64     /**
65      * 修改测试设备接口数据
66      * 
67      * @param daTestDeviceInterface 测试设备接口数据
68      * @return 结果
69      */
70     @Override
71     public int updateDaTestDeviceInterface(DaTestDeviceInterface daTestDeviceInterface)
72     {
73         daTestDeviceInterface.setUpdateTime(DateUtils.getNowDate());
74         return daTestDeviceInterfaceMapper.updateDaTestDeviceInterface(daTestDeviceInterface);
75     }
76
77     /**
78      * 批量删除测试设备接口数据
79      * 
80      * @param ids 需要删除的测试设备接口数据主键
81      * @return 结果
82      */
83     @Override
84     public int deleteDaTestDeviceInterfaceByIds(Long[] ids)
85     {
86         return daTestDeviceInterfaceMapper.deleteDaTestDeviceInterfaceByIds(ids);
87     }
88
89     /**
90      * 删除测试设备接口数据信息
91      * 
92      * @param id 测试设备接口数据主键
93      * @return 结果
94      */
95     @Override
96     public int deleteDaTestDeviceInterfaceById(Long id)
97     {
98         return daTestDeviceInterfaceMapper.deleteDaTestDeviceInterfaceById(id);
99     }
100 }