LsSectionRouteService.java 297 Bytes
package com.bsth.service;

import com.bsth.entity.LsSectionRoute;

import java.util.List;

/**
 * @author Hill
 */
public interface LsSectionRouteService extends BaseService<LsSectionRoute, Integer> {

	/**
	 * 批量撤销路段路由
	 * @param ids
	 */
	void batchDestroy(List<Integer> ids);
}