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
package com.ruoyi.jt.service;
 
import com.ruoyi.jt.domain.JtDeviceLocation;
import org.yzh.protocol.t808.T0200;
 
import java.util.List;
 
/**
 * 设备位置Service接口
 * 
 * @author ruoyi
 * @date 2025-06-26
 */
public interface IJtDeviceLocationService 
{
    /**
     * 查询设备位置
     * 
     * @param id 设备位置主键
     * @return 设备位置
     */
    public JtDeviceLocation selectJtDeviceLocationById(String id);
 
    /**
     * 查询设备位置列表
     * 
     * @param jtDeviceLocation 设备位置
     * @return 设备位置集合
     */
    public List<JtDeviceLocation> selectJtDeviceLocationList(JtDeviceLocation jtDeviceLocation);
 
    /**
     * 新增设备位置
     * 
     * @param jtDeviceLocation 设备位置
     * @return 结果
     */
    public int insertJtDeviceLocation(JtDeviceLocation jtDeviceLocation);
 
    /**
     * 修改设备位置
     * 
     * @param jtDeviceLocation 设备位置
     * @return 结果
     */
    public int updateJtDeviceLocation(JtDeviceLocation jtDeviceLocation);
 
    /**
     * 批量删除设备位置
     * 
     * @param ids 需要删除的设备位置主键集合
     * @return 结果
     */
    public int deleteJtDeviceLocationByIds(String[] ids);
 
    /**
     * 删除设备位置信息
     * 
     * @param id 设备位置主键
     * @return 结果
     */
    public int deleteJtDeviceLocationById(String id);
 
    int saveT0200s(List<T0200> list, boolean isUpdateDevicePosition);
}