VehicleInoutStopService.java
672 Bytes
package com.bsth.service.traffic;
import com.bsth.entity.traffic.VehicleInoutStop;
import com.bsth.service.BaseService;
import java.util.List;
import java.util.Map;
/**
* 时刻模板上传日志
*/
public interface VehicleInoutStopService extends BaseService<VehicleInoutStop,Integer> {
/**
* 给定条件查车载上报停靠站
* @param map
* @return
*/
List<Map<String, Object>> getVehicleInoutStopByParam(Map<String,Object> map);
/**
* 给定条件查车载上报停靠站的记录数
* @param map
* @return
*/
long getVehicleInoutStopCountByParam(Map<String,Object> map);
}