提交 | 用户 | 时间
|
5966d6
|
1 |
package com.jcdm.main.da.testDeviceInterface.service; |
A |
2 |
|
|
3 |
import java.util.List; |
|
4 |
|
|
5 |
import com.baomidou.mybatisplus.extension.service.IService; |
|
6 |
import com.jcdm.main.da.testDeviceInterface.domain.DaTestDeviceInterface; |
|
7 |
|
|
8 |
/** |
|
9 |
* 测试设备接口数据Service接口 |
|
10 |
* |
|
11 |
* @author hdy |
|
12 |
* @date 2024-05-13 |
|
13 |
*/ |
|
14 |
public interface IDaTestDeviceInterfaceService extends IService<DaTestDeviceInterface> |
|
15 |
{ |
|
16 |
/** |
|
17 |
* 查询测试设备接口数据 |
|
18 |
* |
|
19 |
* @param id 测试设备接口数据主键 |
|
20 |
* @return 测试设备接口数据 |
|
21 |
*/ |
|
22 |
public DaTestDeviceInterface selectDaTestDeviceInterfaceById(Long id); |
|
23 |
|
|
24 |
/** |
|
25 |
* 查询测试设备接口数据列表 |
|
26 |
* |
|
27 |
* @param daTestDeviceInterface 测试设备接口数据 |
|
28 |
* @return 测试设备接口数据集合 |
|
29 |
*/ |
|
30 |
public List<DaTestDeviceInterface> selectDaTestDeviceInterfaceList(DaTestDeviceInterface daTestDeviceInterface); |
|
31 |
|
|
32 |
/** |
|
33 |
* 新增测试设备接口数据 |
|
34 |
* |
|
35 |
* @param daTestDeviceInterface 测试设备接口数据 |
|
36 |
* @return 结果 |
|
37 |
*/ |
|
38 |
public int insertDaTestDeviceInterface(DaTestDeviceInterface daTestDeviceInterface); |
|
39 |
|
|
40 |
/** |
|
41 |
* 修改测试设备接口数据 |
|
42 |
* |
|
43 |
* @param daTestDeviceInterface 测试设备接口数据 |
|
44 |
* @return 结果 |
|
45 |
*/ |
|
46 |
public int updateDaTestDeviceInterface(DaTestDeviceInterface daTestDeviceInterface); |
|
47 |
|
|
48 |
/** |
|
49 |
* 批量删除测试设备接口数据 |
|
50 |
* |
|
51 |
* @param ids 需要删除的测试设备接口数据主键集合 |
|
52 |
* @return 结果 |
|
53 |
*/ |
|
54 |
public int deleteDaTestDeviceInterfaceByIds(Long[] ids); |
|
55 |
|
|
56 |
/** |
|
57 |
* 删除测试设备接口数据信息 |
|
58 |
* |
|
59 |
* @param id 测试设备接口数据主键 |
|
60 |
* @return 结果 |
|
61 |
*/ |
|
62 |
public int deleteDaTestDeviceInterfaceById(Long id); |
|
63 |
} |