StationServiceImpl.java
805 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
package com.bsth.service.impl;
import java.util.HashMap;
import java.util.Map;
import org.springframework.stereotype.Service;
import com.bsth.entity.Station;
import com.bsth.service.StationService;
/**
*
* @ClassName: StationServiceImpl(站点service业务层实现类)
*
* @Extends : BaseService
*
* @Description: TODO(站点service业务层)
*
* @Author bsth@lq
*
* @Date 2016年05月03日 上午9:21:17
*
* @Version 公交调度系统BS版 0.1
*
*/
@Service
public class StationServiceImpl extends BaseServiceImpl<Station, Integer> implements StationService{
@Override
public Map<String, Object> systemSaveStations(Map<String, Object> map) {
Map<String, Object> resultMap = new HashMap<String,Object>();
return null;
}
}