wlzboy
2025-09-21 7d81ce01560d384f15212edc40ebeaa9924913f9
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.system.mapper;
 
import com.ruoyi.system.domain.SysGpsConfig;
import java.util.List;
 
/**
 * GPS配置Mapper接口
 */
public interface SysGpsConfigMapper {
    /**
     * 查询GPS配置
     * 
     * @param configId 配置ID
     * @return GPS配置
     */
    public SysGpsConfig selectGpsConfigById(Long configId);
 
    /**
     * 查询GPS配置列表
     * 
     * @param gpsConfig GPS配置
     * @return GPS配置集合
     */
    public List<SysGpsConfig> selectGpsConfigList(SysGpsConfig gpsConfig);
 
    /**
     * 新增GPS配置
     * 
     * @param gpsConfig GPS配置
     * @return 结果
     */
    public int insertGpsConfig(SysGpsConfig gpsConfig);
 
    /**
     * 修改GPS配置
     * 
     * @param gpsConfig GPS配置
     * @return 结果
     */
    public int updateGpsConfig(SysGpsConfig gpsConfig);
 
    /**
     * 删除GPS配置
     * 
     * @param configId 配置ID
     * @return 结果
     */
    public int deleteGpsConfigById(Long configId);
 
    /**
     * 批量删除GPS配置
     * 
     * @param configIds 需要删除的数据ID
     * @return 结果
     */
    public int deleteGpsConfigByIds(Long[] configIds);
 
    /**
     * 根据key查询配置
     * 
     * @param configKey 配置键值
     * @return GPS配置
     */
    public SysGpsConfig selectGpsConfigByKey(String configKey);