LsStationRouteService.java 446 Bytes
package com.bsth.service;

import com.bsth.entity.LsStationRoute;

import java.util.Map;

/**
 * 
 * @Interface: StationRouteService(站点路由service业务层实现接口)
 * 
 * @Extends : BaseService
 * 
 * @Description: TODO(站点路由service业务层实现接口)
 * 
 * @Author YRF
 * 
 */
public interface LsStationRouteService extends BaseService<LsStationRoute, Integer> {

    Map<String, Object> upddis(Map<String, Object> map);
}