SectionSpeedService.java
840 Bytes
package com.bsth.service;
import java.util.List;
import java.util.Map;
import com.bsth.entity.SectionSpeed;
/**
* Created by xu on 16/5/31.
*/
public interface SectionSpeedService extends BaseService<SectionSpeed, Integer> {
/** @description TODO(新增路段限速) @return map ({status:SUCCESS}成功 或者 {status:ERROR}失败) @param map (路段限速信息)*/
Map<String, Object> add(Map<String, Object> map);
/** @description TODO(修改路段) @return map ({status:SUCCESS}成功 或者 {status:ERROR}失败) @param map (路段限速信息)*/
Map<String, Object> roadUpd(Map<String, Object> map);
List<Map<String, Object>> getSectionSpeedInfo(Map<String, Object> map);
/** 解析路段 */
List<Map<String, Object>> analyticSection(Map<String,Object> map);
}