package com.ruoyi.gps.mapper;
|
|
import com.ruoyi.gps.domain.GpsCollectLog;
|
|
import java.util.List;
|
|
/**
|
* 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);
|
}
|