18045010223
2025-07-07 0d3a683a0c97154b1f2e6657398664537e4e3e82
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
package com.ruoyi.jt.mapper;
 
import java.util.List;
import com.ruoyi.jt.domain.JtDevice;
 
/**
 * 设备Mapper接口
 *
 * @author ruoyi
 * @date 2025-03-26
 */
public interface JtDeviceMapper
{
    /**
     * 查询设备
     *
     * @param id 设备主键
     * @return 设备
     */
    public JtDevice selectJtDeviceById(Long id);
    /**
     * 按电话号查询终端
     *
     * @param clientId 电话号
     * @return 终端
     */
    public JtDevice selectJtDeviceByClientId(String clientId);
    /**
     * 查询设备列表
     *
     * @param jtDevice 设备
     * @return 设备集合
     */
    public List<JtDevice> selectJtDeviceList(JtDevice jtDevice);
 
    /**
     * 新增设备
     *
     * @param jtDevice 设备
     * @return 结果
     */
    public int insertJtDevice(JtDevice jtDevice);
 
    /**
     * 修改设备
     *
     * @param jtDevice 设备
     * @return 结果
     */
    public int updateJtDevice(JtDevice jtDevice);
 
    /**
     * 删除设备
     *
     * @param id 设备主键
     * @return 结果
     */
    public int deleteJtDeviceById(Long id);
 
    /**
     * 批量删除设备
     *
     * @param ids 需要删除的数据主键集合
     * @return 结果
     */
    public int deleteJtDeviceByIds(Long[] ids);
}