wzp
2025-05-03 4676c4f9c32298ce07af841a899394e6374a9964
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
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);