wzp
2025-09-03 a8553f9ef7e165b6348243af91caad1a987f8f9c
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
package com.ruoyi.system.service;
 
import java.util.List;
import com.ruoyi.system.domain.VehicleGps;
 
/**
 * 车辆GPS坐标Service接口
 */
public interface IVehicleGpsService {
    /**
     * 查询车辆GPS坐标
     */
    public VehicleGps selectVehicleGpsById(Long gpsId);
 
    /**
     * 查询车辆GPS坐标列表
     */
    public List<VehicleGps> selectVehicleGpsList(VehicleGps vehicleGps);
 
    /**
     * 新增车辆GPS坐标
     */
    public int insertVehicleGps(VehicleGps vehicleGps);
 
    /**
     * 修改车辆GPS坐标
     */
    public int updateVehicleGps(VehicleGps vehicleGps);
 
    /**
     * 批量删除车辆GPS坐标
     */
    public int deleteVehicleGpsByIds(Long[] gpsIds);
 
    /**
     * 删除车辆GPS坐标信息
     */
    public int deleteVehicleGpsById(Long gpsId);
 
    /**
     * 删除指定日期之前的车辆GPS数据
     * 
     * @return 删除的记录数
     */
    public int deleteVehicleGpsBeforeDate();