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
package com.ruoyi.jt.service;
 
import java.util.List;
import com.ruoyi.jt.domain.JtDevice;
import org.yzh.web.model.entity.DeviceDO;
 
/**
 * 终端Service接口
 * 
 * @author ruoyi
 * @date 2025-03-21
 */
public interface IJtDeviceService 
{
    /**
     * 查询终端
     * 
     * @param id 终端主键
     * @return 终端
     */
    public JtDevice selectJtDeviceById(Long id);
 
    /**
     * 查询终端列表
     * 
     * @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 ids 需要删除的终端主键集合
     * @return 结果
     */
    public int deleteJtDeviceByIds(Long[] ids);
 
    /**
     * 删除终端信息
     * 
     * @param id 终端主键
     * @return 结果
     */
    public int deleteJtDeviceById(Long id);
 
    boolean isExistDevice(DeviceDO device);
}