LsSectionRouteService.java
449 Bytes
package com.bsth.service;
import com.bsth.entity.LsSectionRoute;
import java.util.Map;
/**
*
* @Interface: SectionRouteService(路段路由service业务层实现接口)
*
* @extends : BaseService
*
* @Description: TODO(路段路由service业务层实现接口)
*
* @Author YRF
*
*/
public interface LsSectionRouteService extends BaseService<LsSectionRoute, Integer> {
Map<String,Object> doubleName(Map<String, Object> map);
}