SectionService.java
719 Bytes
package com.bsth.service;
import java.util.Map;
import com.bsth.entity.Section;
/**
*
* @Interface: SectionService(路段service业务层实现接口)
*
* @extends : BaseService
*
* @Description: TODO(路段service业务层实现接口)
*
* @Author bsth@lq
*
* @Date 2016年05月03日 上午9:21:17
*
* @Version 公交调度系统BS版 0.1
*
*/
public interface SectionService extends BaseService<Section, Integer> {
/**
* @Description :TODO(编辑线路走向)
*
* @param map <sectionId:路段ID; sectionJSON:路段信息>
*
* @return Map<String, Object> <SUCCESS ; ERROR>
*/
Map<String, Object> sectionUpdate(Map<String, Object> map);
}