LsSectionRouteController.java
2.16 KB
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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
package com.bsth.controller;
import com.bsth.common.ResponseCode;
import com.bsth.entity.SectionRoute;
import com.bsth.service.LsSectionRouteService;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RequestMethod;
import org.springframework.web.bind.annotation.RequestParam;
import org.springframework.web.bind.annotation.RestController;
import java.util.Arrays;
import java.util.HashMap;
import java.util.List;
import java.util.Map;
/**
*
* @ClassName: SectionRouteController(路段路由控制器)
*
* @Extends : BaseController
*
* @Description: TODO(路段路由控制层)
*
* @Author bsth@lq
*
* @Date 2016年05月03日 上午9:21:17
*
* @Version 公交调度系统BS版 0.1
*
*/
@RestController
@RequestMapping("/api/lssectionroute")
public class LsSectionRouteController extends BaseController<SectionRoute, Integer> {
private final static Logger log = LoggerFactory.getLogger(LsSectionRouteController.class);
@Autowired
private LsSectionRouteService lsSectionRouteService;
/**
* @param id
* @throws
* @Description: TODO(批量撤销路段)
*/
@RequestMapping(value = "/destroy", method = RequestMethod.POST)
public Map<String, Object> destroy(Integer id) {
Map<String, Object> result = new HashMap<>();
try {
lsSectionRouteService.batchDestroy(Arrays.asList(id));
result.put("status", ResponseCode.SUCCESS);
} catch (Exception e) {
result.put("status", ResponseCode.ERROR);
log.error("", e);
}
return result;
}
/**
* @param ids
* @throws
* @Description: TODO(批量撤销路段)
*/
@RequestMapping(value = "/batchDestroy", method = RequestMethod.POST)
public Map<String, Object> batchDestroy(@RequestParam(value = "ids[]") List<Integer> ids) {
Map<String, Object> result = new HashMap<>();
try {
lsSectionRouteService.batchDestroy(ids);
result.put("status", ResponseCode.SUCCESS);
} catch (Exception e) {
result.put("status", ResponseCode.ERROR);
log.error("", e);
}
return result;
}
}