LsStationRouteService.java
475 Bytes
package com.bsth.service;
import com.bsth.entity.LsStationRoute;
import java.util.List;
import java.util.Map;
/**
* @author Hill
*/
public interface LsStationRouteService extends BaseService<LsStationRoute, Integer> {
/**
* 按条件查询所有历史站点路由信息
* @param map
* @return
*/
Iterable<LsStationRoute> findAllByParams(Map<String, Object> map);
/**
* 批量撤销站点路由
* @param ids
*/
void batchDestroy(List<Integer> ids);
}