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
package com.ruoyi.system.mapper;
 
import java.util.List;
import com.ruoyi.system.domain.GpsCollectLog;
 
/**
 * GPS采集日志Mapper接口
 */
public interface GpsCollectLogMapper {
    /**
     * 查询GPS采集日志
     */
    public GpsCollectLog selectGpsCollectLogById(Long logId);
 
    /**
     * 查询GPS采集日志列表
     */
    public List<GpsCollectLog> selectGpsCollectLogList(GpsCollectLog gpsCollectLog);
 
    /**
     * 新增GPS采集日志
     */
    public int insertGpsCollectLog(GpsCollectLog gpsCollectLog);
 
    /**
     * 修改GPS采集日志
     */
    public int updateGpsCollectLog(GpsCollectLog gpsCollectLog);
 
    /**
     * 删除GPS采集日志
     */
    public int deleteGpsCollectLogById(Long logId);
 
    /**
     * 批量删除GPS采集日志
     */
    public int deleteGpsCollectLogByIds(Long[] logIds);
 
    /**
     * 根据车牌号获取车辆ID
     */
    public Long getVehicleIdByNo(String vehicleNo);